sigh, I have a bootloader working!

This commit is contained in:
David Welch
2012-05-27 02:31:05 -04:00
parent d69e19201f
commit c44c1146ea
11 changed files with 931 additions and 0 deletions

12
bootloader01/memmap Normal file
View File

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