adding uart04 example. uses interrupts

This commit is contained in:
David Welch
2012-07-19 13:05:54 -04:00
parent 708bf26f8a
commit 3ac806e23c
5 changed files with 425 additions and 0 deletions

12
uart04/memmap Normal file
View File

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