adding blinker04, this uses the ARM timer

This commit is contained in:
David Welch
2012-05-28 18:23:24 -04:00
parent 4792bb0a31
commit 36fd5ec1f2
5 changed files with 153 additions and 0 deletions

12
blinker04/memmap Normal file
View File

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