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
RevLine 
[62340ef]1OUTPUT_FORMAT("elf32-m68k")
[6dc5ea7]2ENTRY(start)
3SECTIONS
4{
[0acb7d0]5 .text (0x10000):
[6dc5ea7]6 {
[8325447]7 stext = .;
[62340ef]8 *(.text .text.*)
9 *(.rodata .rodata.*)
[cc2c9e0]10 . = ALIGN(0x10);
[8325447]11 etext = .;
[6dc5ea7]12 }
13
[8325447]14 .data (etext):
[6dc5ea7]15 {
[8325447]16 sdata = .;
[62340ef]17 *(.data .data.*)
[cc2c9e0]18 . = ALIGN(0x10);
[8325447]19 edata = .;
[6dc5ea7]20 }
21
[8325447]22 .bss (edata):
[6dc5ea7]23 {
[8325447]24 sbss = .;
[62340ef]25 *(.bss .bss.*)
[8325447]26 ebss = .;
[6dc5ea7]27 }
28
[8325447]29 end = .;
[6dc5ea7]30}
Note: See TracBrowser for help on using the repository browser.