added uart05. dumped identification registers to see/confirm the RPi2 is using a cortex-a7 r0p5

This commit is contained in:
dwelch67
2015-03-22 22:54:00 -04:00
parent 10f5860952
commit 89aa02ee12
8 changed files with 478 additions and 0 deletions

12
uart05/memmap Normal file
View File

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