5 #include "sw/device/silicon_creator/lib/manifest_def.h"
12 extern char _manifest_code_start[];
13 extern char _manifest_code_end[];
14 extern char _manifest_entry_point[];
15 extern char _manifest_address_translation[];
30 .
minor = kManifestVersionMinor1,
31 .major = kManifestVersionMajor1,
33 .code_start = (uint32_t)_manifest_code_start,
34 .code_end = (uint32_t)_manifest_code_end,
35 .entry_point = (uint32_t)_manifest_entry_point,
36 .address_translation = (uint32_t)_manifest_address_translation,
39 const manifest_t *manifest_def_get(
void) {
return &kManifest_; }