blob: 91be2e8901778cb3c6ea65d0b7fd3623d67a8391 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import targets
import testlib
class E300Sim(targets.Target):
xlen = 32
timeout_sec = 6000
ram = 0x80000000
ram_size = 256 * 1024 * 1024
instruction_hardware_breakpoint_count = 2
openocd_config_path = "Freedom.cfg"
link_script_path = "Freedom.lds"
def create(self):
return testlib.VcsSim(sim_cmd=self.sim_cmd, debug=False)
|