adding float02, some fun with testfloat

This commit is contained in:
David Welch
2012-06-13 02:34:58 -04:00
parent e063695a38
commit 794354527d
8 changed files with 1099 additions and 0 deletions

12
float02/memmap Normal file
View File

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