adding bootloader06, made it more lean and mean than bootloader05

This commit is contained in:
dwelch
2014-01-28 21:45:54 -05:00
parent 3cd2590490
commit e775dd3081
17 changed files with 130348 additions and 0 deletions

12
bootloader06/loader Normal file
View File

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