[rendering] Add batch mode to the simple code
[wikipediardware.git] / mbr / application.lds
blobdef7e97c276d4781523b060d04b65b65ae94936a
1 OUTPUT_FORMAT("elf32-c33", "elf32-c33", "elf32-c33")
2 OUTPUT_ARCH(c33)
3 SEARCH_DIR(.);
5 MEMORY
7         iram (rwx): ORIGIN = 0, LENGTH = 8k
10 SECTIONS
12         /* the eeprom_load is built into the master boot record */
13         eeprom_load = 0x2;
15         __dp = 0;
17         .text 0x200 :
18         {
19                 *(.text) ;
20         } > iram
22         __START_text = LOADADDR(.text);
23         __SIZE_text = SIZEOF(.text);
25         .rodata :
26         {
27                 *(.rodata) ;
28         } > iram
30         __START_rodata =  LOADADDR(.rodata);
31         __SIZE_rodata =  SIZEOF(.rodata);
33         .data :
34         {
35                 *(.data) ;
36         } > iram
38         __START_data =  LOADADDR(.data);
39         __SIZE_data =  SIZEOF(.data);
41         .bss :
42         {
43                 *(.bss) ;
44         } > iram
46         __START_bss = LOADADDR(.bss);
47         __SIZE_bss = SIZEOF(.bss);