source: buchla-68k/misc/ram.ld@ 609839c

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

Generate bios.abs.

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