Remove unneeded delays in smtbmc vlogtb

This commit is contained in:
Clifford Wolf 2017-07-03 15:37:17 +02:00
parent 287831dca3
commit 3e0948e16f
1 changed files with 1 additions and 1 deletions

View File

@ -763,7 +763,7 @@ def write_vlogtb_trace(steps_start, steps_stop, index):
pi_names = [[name] for name, _ in primary_inputs if name not in clock_inputs] pi_names = [[name] for name, _ in primary_inputs if name not in clock_inputs]
pi_values = smt.get_net_bin_list(vlogtb_topmod, pi_names, vlogtb_state.replace("@@step_idx@@", str(i))) pi_values = smt.get_net_bin_list(vlogtb_topmod, pi_names, vlogtb_state.replace("@@step_idx@@", str(i)))
print(" #1;", file=f) print("", file=f)
print(" // state %d" % i, file=f) print(" // state %d" % i, file=f)
if i > 0: if i > 0:
print(" @(posedge clock);", file=f) print(" @(posedge clock);", file=f)