/*###ICF### Section handled by ICF editor, don't touch! ****/
|
/*-Editor annotation file-*/
|
/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\cortex_v1_0.xml" */
|
/*-Specials-*/
|
define symbol __ICFEDIT_intvec_start__ = 0x00000000;
|
/*-Memory Regions-*/
|
define symbol __ICFEDIT_region_ROM_start__ = 0x00000000;
|
define symbol __ICFEDIT_region_ROM_end__ = 0x0003FFFF;
|
define symbol __ICFEDIT_region_RAM_start__ = 0x02000000;
|
define symbol __ICFEDIT_region_RAM_end__ = 0x0200FFFF;
|
/*-Sizes-*/
|
define symbol __ICFEDIT_size_cstack__ = 0x1800;
|
define symbol __ICFEDIT_size_heap__ = 0x000;
|
/**** End of ICF editor section. ###ICF###*/
|
|
|
define memory mem with size = 4G;
|
define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
|
define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
|
|
define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
|
define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
|
|
define block BLK0 with fixed order
|
{
|
readonly section .intvec,
|
readonly,
|
section .ZBOOT_SECTION,
|
section .ZBUILD_SECTION
|
};
|
|
initialize by copy with packing = packbits
|
{
|
section .RAMCODE,
|
section .textrw,
|
ro object mk_mac.o,
|
ro object mk_lsp.o,
|
ro object mk_radar.o,
|
ro object mk_power.o,
|
ro object uwb_radar.o,
|
ro object uwb_radar_task.o,
|
ro object present_detection.o,
|
ro object radar_common.o,
|
ro object radar_cfar.o,
|
readwrite
|
};
|
do not initialize { section .noinit };
|
|
place at start of ROM_region { block BLK0 };
|
|
place at start of RAM_region { section .RAMCODE, section .textrw, readwrite };
|
|
place at end of RAM_region { block CSTACK, block HEAP };
|