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

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

Generate bios.abs.

  • Property mode set to 100644
File size: 382 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.*)
[0acb7d0]10 _etext = ALIGN(0x10);
[6dc5ea7]11 }
12
[0acb7d0]13 .data (_etext):
[6dc5ea7]14 {
[0acb7d0]15 _sdata = .;
[62340ef]16 *(.data .data.*)
[6dc5ea7]17 _edata = .;
18 }
19
[0acb7d0]20 .bss (0x400):
[6dc5ea7]21 {
[0acb7d0]22 _sbss = .;
[62340ef]23 *(.bss .bss.*)
[0acb7d0]24 _ebss = .;
[6dc5ea7]25 }
26}
Note: See TracBrowser for help on using the repository browser.