adding bootloader05

This commit is contained in:
root
2012-09-13 23:29:06 -04:00
parent 467e3eb389
commit c316c42e0a
22 changed files with 130271 additions and 0 deletions

12
bootloader05/loader Normal file
View File

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