binutils-gdb/ld/h8300hds.sc

23 lines
224 B
Python
Raw Normal View History

OUTPUT_FORMAT("coff-h8300")
1991-10-06 20:17:06 +01:00
OUTPUT_ARCH(h8300)
SECTIONS
{
.text 0:
{
*(.text)
*(.strings)
}
.data . :
{
*(.data)
}
.bss . :
{
*(.bss)
[COMMON]
_end = .;
}
1991-10-06 20:17:06 +01:00
}