blinker01 example for pi2 in svc mode

This commit is contained in:
dwelch
2016-03-27 13:00:14 -04:00
parent bf2a3823e5
commit eb8aaccfaf
11 changed files with 462 additions and 0 deletions

View File

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