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

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

Create output files via ELF files.

  • Property mode set to 100644
File size: 315 bytes
RevLine 
[62340ef]1OUTPUT_FORMAT("elf32-m68k")
[6dc5ea7]2ENTRY(start)
3SECTIONS
4{
5 .text (0x100000) :
6 {
[62340ef]7 *(.text .text.*)
8 *(.rodata .rodata.*)
[6dc5ea7]9 _etext = .;
10 }
11
12 .data : ALIGN(0x10)
13 {
[62340ef]14 *(.data .data.*)
[6dc5ea7]15 _edata = .;
16 }
17
[f394e7b]18 .bss (0x400) :
[6dc5ea7]19 {
[62340ef]20 *(.bss .bss.*)
[6dc5ea7]21 }
22
23 _end = .;
24}
Note: See TracBrowser for help on using the repository browser.