updating top level readme and changing uart examples to use the 0x8000 base address

This commit is contained in:
David Welch
2012-06-20 01:00:49 -04:00
parent 267b154b8e
commit 0d1a778e72
7 changed files with 8 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
MEMORY
{
ram : ORIGIN = 0x00000000, LENGTH = 0x1000
ram : ORIGIN = 0x8000, LENGTH = 0x1000
}
SECTIONS

View File

@@ -1,10 +1,7 @@
.globl _start
_start:
b reset
reset:
mov sp,#0x1000
mov sp,#0x8000
bl notmain
hang: b hang