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

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

Removed _ prefix.

  • Property mode set to 100644
File size: 390 bytes
RevLine 
[62340ef]1OUTPUT_FORMAT("elf32-m68k")
[6dc5ea7]2ENTRY(start)
3SECTIONS
4{
[0acb7d0]5 .text (0x100000):
[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.*)
[8325447]18 edata = .;
[6dc5ea7]19 }
20
[0acb7d0]21 .bss (0x400):
[6dc5ea7]22 {
[8325447]23 sbss = .;
[62340ef]24 *(.bss .bss.*)
[8325447]25 ebss = .;
[6dc5ea7]26 }
27}
Note: See TracBrowser for help on using the repository browser.