Skip to content
Snippets Groups Projects
Commit 32267d61 authored by Yaman Umuroglu's avatar Yaman Umuroglu
Browse files

[Util] bugfix for multi_handshake

parent d62fd4c7
No related branches found
No related tags found
No related merge requests found
......@@ -111,7 +111,8 @@ def multi_handshake(sim, ifnames, basename="s_axi_control_"):
done.append(ifname)
toggle_clk(sim)
for ifname in done:
ifnames.remove(ifname)
if ifname in ifnames:
ifnames.remove(ifname)
_write_signal(sim, basename + ifname + "VALID", 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment