source: buchla-68k/misc/rom.ld@ cc2c9e0

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

Fix linker scripts.

  • Property mode set to 100644
File size: 397 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.