From: Palmer Dabbelt Date: Tue, 16 May 2017 19:47:39 +0000 (-0700) Subject: Change Spike's RAM location to match the linker script X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=50e52c73766bae4919b83e06e53fde4cb20e2ff2;hp=771bb94e09ad1915c18a581ba35edd75c8903837;p=riscv-tests.git Change Spike's RAM location to match the linker script --- 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