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)
*(.strings)
_etext = .;
${RELOCATING+_etext = .;}
} ${RELOCATING+ > ram}
.data :
{
*(.data)
_edata = .;
${RELOCATING+_edata = .;}
} ${RELOCATING+ > ram}
.bss :
{
${RELOCATING+ _bss_start = .};
${RELOCATING+ _bss_start = .;}
*(.bss)
*(COMMON)
${RELOCATING+ _end = .};
} ${RELOCATING+ >ram}
.stack :
{
_stack = .;
${RELOCATING+_stack = .;}
*(.stack)
} ${RELOCATING+ > topram}
}