moving twain test to 0x8000

This commit is contained in:
David Welch
2012-06-08 22:35:30 -04:00
parent 215de128be
commit f3a4d8b399
3 changed files with 5 additions and 19 deletions

View File

@@ -379,3 +379,6 @@ and the machine code generated. We also got to play with the caches
and mmu in a simplified fashion. and mmu in a simplified fashion.
(yes this is too wordy and I need to proof/rewrite) (yes this is too wordy and I need to proof/rewrite)
based on new discoveries, changed the start address to 0x8000 for the
whole thing so that messes with cache lines and results have some
differences to the numbers above (for reasons described above).

View File

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

View File

@@ -1,30 +1,13 @@
.globl _start .globl _start
_start: _start:
b reset
b hang
b hang
b hang
b hang
b hang
b hang
b hang
b hang
b hang
b hang
b hang
b hang
b hang
b hang
reset:
;@ add/remove nops here ;@ add/remove nops here
nop nop
nop nop
nop nop
;@ add/remove nops here
mov sp,#0x00200000 mov sp,#0x00200000
bl notmain bl notmain