123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //-----------------------------------------------------------------------------
- // ILINK command file template for the Renesas RX microcontroller R5F562N8
- //-----------------------------------------------------------------------------
- define memory mem with size = 4G;
- define region ROM_region16 = mem:[from 0xFFFF8000 to 0xFFFFFFFF];
- define region RAM_region16 = mem:[from 0x00000004 to 0x00007FFF];
- define region ROM_region24 = mem:[from 0xFFF80000 to 0xFFFFFFFF];
- define region RAM_region24 = mem:[from 0x00000004 to 0x00017FFF];
- define region ROM_region32 = mem:[from 0xFFF80000 to 0xFFFFFFFF];
- define region RAM_region32 = mem:[from 0x00000004 to 0x00017FFF];
- define region DATA_FLASH_region = mem:[from 0x00100000 to 0x00107FFF];
- initialize by copy { rw, ro section D, ro section D_1, ro section D_2 };
- initialize by copy with packing = none { section __DLIB_PERTHREAD };
- do not initialize { section .*.noinit };
- define block HEAP with alignment = 4, size = _HEAP_SIZE { };
- define block USTACK with alignment = 4, size = _USTACK_SIZE { };
- define block ISTACK with alignment = 4, size = _ISTACK_SIZE { };
- define block STACKS with fixed order { block ISTACK,
- block USTACK };
- keep { section FSymTab };
- keep { section VSymTab };
- keep { section .rti_fn* };
- place at address mem:0xFFFFFF80 { ro section .nmivec };
- "ROM16":place in ROM_region16 { ro section .code16*,
- ro section .data16* };
- "RAM16":place in RAM_region16 { rw section .data16*,
- rw section __DLIB_PERTHREAD };
- "ROM24":place in ROM_region24 { ro section .code24*,
- ro section .data24* };
- "RAM24":place in RAM_region24 { rw section .data24* };
- "ROM32":place in ROM_region32 { ro,
- ro section FSymTab,
- ro section VSymTab,
- ro section .rti_fn*,
- };
- "RAM32":place in RAM_region32 { rw,
- ro section D,
- ro section D_1,
- ro section D_2,
- block STACKS,
- block HEAP,
- };
- "DATAFLASH":place in DATA_FLASH_region
- { ro section .dataflash* };
|