From 50e52c73766bae4919b83e06e53fde4cb20e2ff2 Mon Sep 17 00:00:00 2001 From: Palmer Dabbelt Date: Tue, 16 May 2017 12:47:39 -0700 Subject: [PATCH] Change Spike's RAM location to match the linker script --- debug/targets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debug/targets.py b/debug/targets.py index 17e752d..423ff69 100644 --- a/debug/targets.py +++ b/debug/targets.py @@ -64,8 +64,8 @@ class Target(object): class SpikeTarget(Target): # pylint: disable=abstract-method directory = "spike" - ram = 0x80010000 - ram_size = 5 * 1024 * 1024 + ram = 0x10000000 + ram_size = 0x10000000 instruction_hardware_breakpoint_count = 4 reset_vector = 0x1000 openocd_config = "targets/%s/openocd.cfg" % directory -- 2.30.2