|
Last change
on this file since 15854f1 was cc2c9e0, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
|
Fix linker scripts.
|
-
Property mode
set to
100644
|
|
File size:
437 bytes
|
| Line | |
|---|
| 1 | OUTPUT_FORMAT("elf32-m68k")
|
|---|
| 2 | ENTRY(start)
|
|---|
| 3 | SECTIONS
|
|---|
| 4 | {
|
|---|
| 5 | .text (0x10000):
|
|---|
| 6 | {
|
|---|
| 7 | _stext = .;
|
|---|
| 8 | *(.text .text.*)
|
|---|
| 9 | *(.rodata .rodata.*)
|
|---|
| 10 | . = ALIGN(0x10);
|
|---|
| 11 | _etext = .;
|
|---|
| 12 | }
|
|---|
| 13 |
|
|---|
| 14 | .data (_etext):
|
|---|
| 15 | {
|
|---|
| 16 | _sdata = .;
|
|---|
| 17 | *(.data .data.*)
|
|---|
| 18 | . = ALIGN(0x10);
|
|---|
| 19 | _edata = .;
|
|---|
| 20 | }
|
|---|
| 21 |
|
|---|
| 22 | .bss (_edata):
|
|---|
| 23 | {
|
|---|
| 24 | _sbss = .;
|
|---|
| 25 | *(.bss .bss.*)
|
|---|
| 26 | _ebss = .;
|
|---|
| 27 | }
|
|---|
| 28 |
|
|---|
| 29 | _end = .;
|
|---|
| 30 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.