1
0
Fork 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
1 changed files with 5 additions and 0 deletions

View File

@ -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):