copied and re-tested float03 example for piaplus

This commit is contained in:
dwelch
2016-03-26 10:37:23 -04:00
parent 4bd13317ea
commit 84fe6f736d
8 changed files with 827 additions and 0 deletions

View File

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