source: buchla-68k/misc/rom.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: 390 bytes
Line 
1OUTPUT_FORMAT("elf32-m68k")
2ENTRY(start)
3SECTIONS
4{
5 .text (0x100000):
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 edata = .;
19 }
20
21 .bss (0x400):
22 {
23 sbss = .;
24 *(.bss .bss.*)
25 ebss = .;
26 }
27}
Note: See TracBrowser for help on using the repository browser.