update readme

This commit is contained in:
dwelch67
2013-05-04 21:46:01 -04:00
parent 0506d93411
commit 398904f7bb
7 changed files with 389 additions and 1 deletions

11
svc01/memmap Normal file
View File

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