From bd5fe5d22eafea126d8de8a6958a6c2a420d1c10 Mon Sep 17 00:00:00 2001 From: Megan Wachs Date: Fri, 3 Nov 2017 16:13:25 -0700 Subject: [PATCH] Debug regression: have to say something about memory in order to run a simple test --- scripts/RocketSim.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/RocketSim.py b/scripts/RocketSim.py index 9d836121..7309911c 100644 --- a/scripts/RocketSim.py +++ b/scripts/RocketSim.py @@ -2,6 +2,11 @@ import targets import testlib class RocketSimHart(targets.Hart): + # This isn't generically true, but it's true enough for the Default*Configs in this code for now. + # to get these tests to pass. + ram = 0x80000000 + ram_size = 0x4000 + instruction_hardware_breakpoint_count = 2 pass class RocketSim(targets.Target):