NetBSD/sys/arch/mmeye/conf/sh.x.RAM
lukem 03aef4723c cleanup:
options SPACE TAB
	makeoptions TAB
	psuedo-device TAB
	remove trailing whitespace
	replace multiple spaces -> tabs
	options "FOO" -> options FOO
	options "FOO=bar" -> options FOO=bar
	options "FOO=\"bar\"" -> options FOO="\"bar\""
2001-11-20 12:56:17 +00:00

50 lines
598 B
Plaintext

OUTPUT_FORMAT("coff-sh")
OUTPUT_ARCH(sh)
MEMORY
{
ram : o = 0x8C010000, l = 4M
}
SECTIONS
{
.text :
{
*(.text)
*(.strings)
_etext = . ;
} > ram
.tors :
{
___ctors = . ;
*(.ctors)
___ctors_end = . ;
___dtors = . ;
*(.dtors)
___dtors_end = . ;
} > ram
.data :
{
*(.data)
_edata = . ;
} > ram
.bss :
{
_bss_start = . ;
*(.bss)
*(COMMON)
_end = . ;
} > ram
.stack :
{
_stack = . ;
*(.stack)
} > ram
.stab 0 (NOLOAD) :
{
*(.stab)
}
.stabstr 0 (NOLOAD) :
{
*(.stabstr)
}
}