/*###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 __ROM_SIZE = 0x00024000;
|
define symbol __ICFEDIT_region_ROM_start__ = 0x00000000;
|
define symbol __ICFEDIT_region_ROM_end__ = __ROM_SIZE - 1;
|
define symbol __ICFEDIT_region_RAM_start__ = 0x02000000 + __ROM_SIZE;
|
define symbol __ICFEDIT_region_RAM_end__ = 0x0202F7FF;
|
/*-Sizes-*/
|
define symbol __ICFEDIT_size_cstack__ = 0x3800;
|
define symbol __ICFEDIT_size_heap__ = 0x0000;
|
/**** 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, readwrite };
|
do not initialize { section .noinit };
|
|
place at start of ROM_region { block BLK0 };
|
|
place at start of RAM_region { section .RAMCODE, readwrite };
|
|
place at end of RAM_region { block CSTACK, block HEAP };
|