old-cross-binutils/ld/h8300hds.sc
Steve Chamberlain cc5bda54de Mon Nov 25 18:28:40 1991 Steve Chamberlain (sac at cygnus.com)
* config.h: h8 is now coff, not ieee
	* h8300hds.sc: reflect the same
1991-11-26 02:29:18 +00:00

22 lines
224 B
Scala
Executable file

OUTPUT_FORMAT("coff-h8300")
OUTPUT_ARCH(h8300)
SECTIONS
{
.text 0:
{
*(.text)
*(.strings)
}
.data . :
{
*(.data)
}
.bss . :
{
*(.bss)
[COMMON]
_end = .;
}
}