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

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

Linked ROM without errors.

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