source: buchla-68k/misc/ram.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: 437 bytes
RevLine 
[62340ef]1OUTPUT_FORMAT("elf32-m68k")
[6dc5ea7]2ENTRY(start)
3SECTIONS
4{
[0acb7d0]5 .text (0x10000):
[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.*)
[cc2c9e0]18 . = ALIGN(0x10);
19 _edata = .;
[6dc5ea7]20 }
21
[0acb7d0]22 .bss (_edata):
[6dc5ea7]23 {
[0acb7d0]24 _sbss = .;
[62340ef]25 *(.bss .bss.*)
[0acb7d0]26 _ebss = .;
[6dc5ea7]27 }
28
29 _end = .;
30}
Note: See TracBrowser for help on using the repository browser.