17 lines
187 B
Perl
Raw Normal View History

2012-03-26 21:18:29 +02:00
SECTIONS
{
reset - 4 :
{
*(reset)
}
boot - 0x1000 :
{
*(boot)
} = 0xffff
. = + SIZEOF_HEADERS;
.text : { *(.text) }
.data : { *(.data) }
.bss : { *(.bss) }
}