adding pi2 blinker02 in svc mode

This commit is contained in:
dwelch
2016-03-27 13:30:22 -04:00
parent eb8aaccfaf
commit e7b38caffb
5 changed files with 225 additions and 0 deletions

View File

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