fix loader memory mapping

This commit is contained in:
adam@algroup.co.uk 2009-06-29 13:26:35 +00:00
parent 0673512814
commit 16e590fd2b

View file

@ -1,7 +1,9 @@
ENTRY(Vector)
SECTIONS
{
. = 0x00010000;
.text : { obj/start.o(.text) *(.text) }
.start : { obj/start.o(.text) }
.text : { *(.text) }
.rodata : { *(.rodata) }
. = 0x00200000;
.data : { *(.data) }