/* #ident	"$Header: vuifile 1.6 89/08/15 $" */

MEMORY	{
	KV_start:	origin	= 0x0,		length	=  0x2000
	KV_text:	origin	= 0x4000,	length	=  0x300000
	}

SECTIONS {

	.start BLOCK(0x200): {
		16start.o(.text)
		} > KV_start

	.text:	{
		} > KV_text

	.data	ALIGN(0x1000) : {
		} > KV_text

	.bss:	{
		} > KV_text

	}

