big commit mostly related to moving start addresses to 0x8000

This commit is contained in:
David Welch
2012-06-08 16:27:35 -04:00
parent 4e56308087
commit b8613820ff
36 changed files with 960 additions and 259 deletions

12
bootloader04/loader Normal file
View File

@@ -0,0 +1,12 @@
MEMORY
{
ram : ORIGIN = 0x06000000, LENGTH = 0x2000
}
SECTIONS
{
.text : { *(.text*) } > ram
.bss : { *(.bss*) } > ram
}