source: buchla-68k/misc/ram.ld

Last change on this file was 8325447, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Removed _ prefix.

  • Property mode set to 100644
File size: 428 bytes
Line 
1OUTPUT_FORMAT("elf32-m68k")
2ENTRY(start)
3SECTIONS
4{
5 .text (0x10000):
6 {
7 stext = .;
8 *(.text .text.*)
9 *(.rodata .rodata.*)
10 . = ALIGN(0x10);
11 etext = .;
12 }
13
14 .data (etext):
15 {
16 sdata = .;
17 *(.data .data.*)
18 . = ALIGN(0x10);
19 edata = .;
20 }
21
22 .bss (edata):
23 {
24 sbss = .;
25 *(.bss .bss.*)
26 ebss = .;
27 }
28
29 end = .;
30}
Note: See TracBrowser for help on using the repository browser.