summaryrefslogtreecommitdiff
path: root/tb
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tb/sim/sdram.S2
-rw-r--r--tb/sim/sdram.py3
2 files changed, 2 insertions, 3 deletions
diff --git a/tb/sim/sdram.S b/tb/sim/sdram.S
index e0d2bf8..ddcaf9d 100644
--- a/tb/sim/sdram.S
+++ b/tb/sim/sdram.S
@@ -2,7 +2,7 @@
reset:
ldr r0, =0x1004
- ldr r1, =0x2000
+ ldr r1, =0x1100
mov r2, #42
.loop:
diff --git a/tb/sim/sdram.py b/tb/sim/sdram.py
index b64c153..0400598 100644
--- a/tb/sim/sdram.py
+++ b/tb/sim/sdram.py
@@ -1,7 +1,6 @@
START = 0x0000_1004
-END = 0x0000_2000
+END = 0x0000_1100
-cycles = 30000
mem_dumps = [range(START, END)]
def final():