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
RevLine 
[62340ef]1OUTPUT_FORMAT("elf32-m68k")
[6dc5ea7]2ENTRY(start)
3SECTIONS
4{
[0acb7d0]5 .text (0x100000):
[6dc5ea7]6 {
[0acb7d0]7 _stext = .;
[62340ef]8 *(.text .text.*)
9 *(.rodata .rodata.*)
[cc2c9e0]10 . = ALIGN(0x10);
11 _etext = .;
[6dc5ea7]12 }
13
[0acb7d0]14 .data (_etext):
[6dc5ea7]15 {
[0acb7d0]16 _sdata = .;
[62340ef]17 *(.data .data.*)
[6dc5ea7]18 _edata = .;
19 }
20
[0acb7d0]21 .bss (0x400):
[6dc5ea7]22 {
[0acb7d0]23 _sbss = .;
[62340ef]24 *(.bss .bss.*)
[0acb7d0]25 _ebss = .;
[6dc5ea7]26 }
27}
Note: See TracBrowser for help on using the repository browser.