1
0

Debug regression: have to say something about memory in order to run a simple test

This commit is contained in:
Megan Wachs 2017-11-03 16:13:25 -07:00
parent 5df55d7911
commit bd5fe5d22e

View File

@ -2,6 +2,11 @@ import targets
import testlib import testlib
class RocketSimHart(targets.Hart): 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 pass
class RocketSim(targets.Target): class RocketSim(targets.Target):