3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-27 10:55:51 +00:00

xilinx: Adding missing inout IO port to IOBUF

This commit is contained in:
Tim Ansell 2018-10-03 16:38:32 -07:00 committed by Jim Lawson
parent b8950bd603
commit cd261795ba

View file

@ -2225,6 +2225,7 @@ module IOBUF (...);
parameter IOSTANDARD = "DEFAULT";
parameter SLEW = "SLOW";
output O;
inout IO;
input I, T;
endmodule