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
Line 
1OUTPUT_FORMAT("elf32-m68k")
2ENTRY(start)
3SECTIONS
4{
5 .text (0x100000):
6 {
7 _stext = .;
8 *(.text .text.*)
9 *(.rodata .rodata.*)
10 _etext = ALIGN(0x10);
11 }
12
13 .data (_etext):
14 {
15 _sdata = .;
16 *(.data .data.*)
17 _edata = .;
18 }
19
20 .bss (0x400):
21 {
22 _sbss = .;
23 *(.bss .bss.*)
24 _ebss = .;
25 }
26}
Note: See TracBrowser for help on using the repository browser.