/*
 *	load map for 8K Bootstrap
 */

/*
 * 8K boostraps have their COFF headers stripped off and start at
 * location 0.  Must leave room between text/data and bss for
 * the SCED-FW cfg table (which lives between 8K and 16K).
 */

MEMORY	{
	8K_boot:	origin	=      0x0,	length	=     0x2000
	8K_bss:		origin	=    0x4000,	length	=  0xfffffff
}

SECTIONS
{
	GROUP    :
	{
		.text	: { *(.text) }
		.data	: { *(.data) }
	} > 8K_boot
	.bss 	: {
		sbss = . ;
		*(.bss)
	} > 8K_bss
}
