source:
buchla-68k/misc/ram.ld@
8438fb1
Last change on this file since 8438fb1 was 8325447, checked in by , 7 years ago | |
---|---|
|
|
File size: 428 bytes |
Rev | Line | |
---|---|---|
[62340ef] | 1 | OUTPUT_FORMAT("elf32-m68k") |
[6dc5ea7] | 2 | ENTRY(start) |
3 | SECTIONS | |
4 | { | |
[0acb7d0] | 5 | .text (0x10000): |
[6dc5ea7] | 6 | { |
[8325447] | 7 | stext = .; |
[62340ef] | 8 | *(.text .text.*) |
9 | *(.rodata .rodata.*) | |
[cc2c9e0] | 10 | . = ALIGN(0x10); |
[8325447] | 11 | etext = .; |
[6dc5ea7] | 12 | } |
13 | ||
[8325447] | 14 | .data (etext): |
[6dc5ea7] | 15 | { |
[8325447] | 16 | sdata = .; |
[62340ef] | 17 | *(.data .data.*) |
[cc2c9e0] | 18 | . = ALIGN(0x10); |
[8325447] | 19 | edata = .; |
[6dc5ea7] | 20 | } |
21 | ||
[8325447] | 22 | .bss (edata): |
[6dc5ea7] | 23 | { |
[8325447] | 24 | sbss = .; |
[62340ef] | 25 | *(.bss .bss.*) |
[8325447] | 26 | ebss = .; |
[6dc5ea7] | 27 | } |
28 | ||
[8325447] | 29 | end = .; |
[6dc5ea7] | 30 | } |
Note:
See TracBrowser
for help on using the repository browser.