source:
buchla-68k/misc/rom.ld@
6dc5ea7
| Last change on this file since 6dc5ea7 was 6dc5ea7, checked in by , 8 years ago | |
|---|---|
|
|
| File size: 282 bytes | |
| Line | |
|---|---|
| 1 | OUTPUT_FORMAT("binary") |
| 2 | ENTRY(start) |
| 3 | SECTIONS |
| 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 : ALIGN(0x10) |
| 19 | { |
| 20 | *(.bss) |
| 21 | } |
| 22 | |
| 23 | _end = .; |
| 24 | } |
Note:
See TracBrowser
for help on using the repository browser.
![(please configure the [header_logo] section in trac.ini)](http://bob.lopatic.de/chrome/site/logo.png)