diff options
Diffstat (limited to 'ld')
-rw-r--r-- | ld/m68kcoff.sc-sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/m68kcoff.sc-sh b/ld/m68kcoff.sc-sh index 393688f..6770254 100644 --- a/ld/m68kcoff.sc-sh +++ b/ld/m68kcoff.sc-sh @@ -15,7 +15,7 @@ SECTIONS { .text : { *(.text) - ${RELOCATING+ _etext = .}; + ${RELOCATING+ etext = .}; *(.lit) *(.shdata) } ${RELOCATING+ > text} @@ -25,14 +25,14 @@ SECTIONS .talias : { } ${RELOCATING+ > talias} .data : { *(.data) - ${RELOCATING+ _edata = .}; + ${RELOCATING+ edata = .}; } ${RELOCATING+ > data} .bss SIZEOF(.data) + ADDR(.data) : { ${RELOCATING+ __bss_start = .}; *(.bss) *(COMMON) - ${RELOCATING+ _end = ALIGN(0x8)}; + ${RELOCATING+ end = ALIGN(0x8)}; } .mstack : { } ${RELOCATING+ > mstack} .rstack : { } ${RELOCATING+ > rstack} |