/*
 * bifile - link editor directives for /boot.  This code lacks the
 * 16-bit-mode startup code which the rest of standalone has in
 * order to simplify 8K bootstraps.
 */
MEMORY
{
	code:	org = 0x4000, length = 0xffffff
}

SECTIONS
{
	.text BLOCK(0x200)	: { *(.text) } > code
	.data BLOCK(0x200)	: { *(.data) } > code
	.bss 			: {
					sbss = . ;
					*(.bss)
					} > code
}
