diff options
Diffstat (limited to 'ld/h8300hms.sc-sh')
-rwxr-xr-x | ld/h8300hms.sc-sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/h8300hms.sc-sh b/ld/h8300hms.sc-sh index 8aa7ee1..f48b11b 100755 --- a/ld/h8300hms.sc-sh +++ b/ld/h8300hms.sc-sh @@ -15,17 +15,17 @@ SECTIONS { *(.text) *(.strings) - } > ram + } ${RELOCATING+ > ram} .data : { *(.data) - } > ram + } ${RELOCATING+ > ram} .bss : { ${RELOCATING+ _bss_start = .} *(.bss) *(COMMON) ${RELOCATING+ _end = .} - } >ram + } ${RELOCATING+ >ram} } EOF |