adding float03

This commit is contained in:
dwelch67
2013-02-24 23:34:04 -05:00
parent 910f42c1f2
commit 8a3e12a944
8 changed files with 748 additions and 1 deletions

12
float03/memmap Normal file
View File

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