moving the board specific examples to a new directory

This commit is contained in:
dwelch
2016-03-26 00:03:10 -04:00
parent bad5556425
commit 20ec91b9a7
214 changed files with 34 additions and 0 deletions

View File

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