else:
last_sim = None # err what are you doing??
- if self.run_hdl and self.run_sim:
- for simstate, hdlstate in zip(sim_states, hdl_states):
- simstate.compare(hdlstate) # register check
- simstate.compare_mem(hdlstate) # memory check
-
if self.run_hdl:
print ("hdl_states")
for state in hdl_states:
for state in sim_states:
print (state)
+ if self.run_hdl and self.run_sim:
+ for simstate, hdlstate in zip(sim_states, hdl_states):
+ simstate.compare(hdlstate) # register check
+ simstate.compare_mem(hdlstate) # memory check
+
# compare against expected results
if test.expected is not None:
# have to put these in manually