Bug fixes for Hitachi

This commit is contained in:
Steve Chamberlain
1992-06-16 17:12:51 +00:00
parent d1140eb5e3
commit 305d9b19c8

View File

@ -16,23 +16,23 @@ SECTIONS
{ {
*(.text) *(.text)
*(.strings) *(.strings)
_etext = .; ${RELOCATING+_etext = .;}
} ${RELOCATING+ > ram} } ${RELOCATING+ > ram}
.data : .data :
{ {
*(.data) *(.data)
_edata = .; ${RELOCATING+_edata = .;}
} ${RELOCATING+ > ram} } ${RELOCATING+ > ram}
.bss : .bss :
{ {
${RELOCATING+ _bss_start = .}; ${RELOCATING+ _bss_start = .;}
*(.bss) *(.bss)
*(COMMON) *(COMMON)
${RELOCATING+ _end = .}; ${RELOCATING+ _end = .};
} ${RELOCATING+ >ram} } ${RELOCATING+ >ram}
.stack : .stack :
{ {
_stack = .; ${RELOCATING+_stack = .;}
*(.stack) *(.stack)
} ${RELOCATING+ > topram} } ${RELOCATING+ > topram}
} }