Commit 049b3b61 by Miodrag Milanovic

same fix for other falsify

parent 984a011d
......@@ -10,9 +10,9 @@ module tristate (en, i, io, o);
assign o = io;
`else
assign io[0] = (!en)? ~i : 1'bZ;
assign io[0] = (en)? ~i : 1'bZ;
assign io[1] = (!i)? ~en : 1'bZ;
assign io[1] = (i)? ~en : 1'bZ;
assign o = ~io;
`endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment