1MEMORY {
2  iram : org = 0x4008c000, len = 0x1000
3  dram : org = 0x3ffc0000, len = 0xc000
4}
5
6ENTRY(ram_main)
7
8SECTIONS {
9  .text : ALIGN(4) {
10    *(.literal)
11    *(.text .text.*)
12  } > iram
13
14  .bss : ALIGN(4) {
15     _bss_start = ABSOLUTE(.);
16    *(.bss)
17	_bss_end = ABSOLUTE(.);
18  } > dram
19
20  .data : ALIGN(4) {
21    *(.data)
22    *(.rodata .rodata.*)
23  } > dram
24}
25
26INCLUDE "../../../../flasher_stub/ld/rom_32.ld"
27