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
41
42
43
44
45
46
47
48
49
50
51
/*###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__ = 0x3800;
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_aes.o,
    ro object mk_radar.o,
    ro object MK8000_preamble_FAP_LSP.o,
    ro object MK8000_read_rssi.o,
    ro object MK8000_sts_FAP_detect.o,
    ro object MK8000_sts_chk_valid.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 };