yincheng.zhong
2024-08-20 7744fffacb03dc81cc9dbaf9f5d86a0f21e79c03
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*###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                   = 0x00020000;
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 };