mirror of https://github.com/YosysHQ/yosys.git
include memory in state
This commit is contained in:
parent
0dbebea939
commit
8d4000a9b7
|
@ -991,8 +991,7 @@ def detect_state_loop(steps_start, steps_stop):
|
|||
value_list = smt.get_net_bin_list(topmod, path_list, "s%d" % i)
|
||||
mem_state = sorted(
|
||||
[(tuple(path), addr, data)
|
||||
for path, addr, data in mem_trace_data.get(i, [])]
|
||||
)
|
||||
for path, addr, data in mem_trace_data.get(i, [])])
|
||||
state = tuple(value_list), tuple(mem_state)
|
||||
if states.get(state):
|
||||
return (i, states[state])
|
||||
|
|
Loading…
Reference in New Issue