3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-05-06 07:15:48 +00:00

Simulation model verilog fix

This commit is contained in:
Miodrag Milanovic 2019-06-26 18:34:34 +02:00
parent 0b7d648c6a
commit ea0b6258ab
2 changed files with 1 additions and 14 deletions

View file

@ -281,19 +281,6 @@ endmodule
// ---------------------------------------
module OB(input I, output O);
assign O = I;
endmodule
// ---------------------------------------
module BB(input I, T, output O, inout B);
assign B = T ? 1'bz : I;
assign O = B;
endmodule
// ---------------------------------------
module INV(input A, output Z);
assign Z = !A;
endmodule