/*
 * link editor directives for the majority of standalone.  Load the
 * 16-bit-mode startup code at location 0 and the rest of standalone
 * at 16K.
 * #ident	"$Header: ifile 1.2 88/06/20 $"
 */
MEMORY
{
	start :  origin = 0x0,		length = 0x2000
	code  :  origin = 0x4000,	length = 0xffffff
}
SECTIONS
{
	.start	BLOCK(0x200)	: { 16start.o(.text) } > start
	.text			: { *(.text) } > code
	.data			: { *(.data) } > code
	.bss 			: {
				sbss = . ;
				*(.bss)
					     } > code
}
