source: buchla-68k/misc/ram.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: 407 bytes
Line 
1OUTPUT_FORMAT("elf32-m68k")
2ENTRY(start)
3SECTIONS
4{
5 .text (0x10000):
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 = ALIGN(0x10);
18 }
19
20 .bss (_edata):
21 {
22 _sbss = .;
23 *(.bss .bss.*)
24 _ebss = .;
25 }
26
27 _end = .;
28}
Note: See TracBrowser for help on using the repository browser.