3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-08 10:25:19 +00:00

Merge pull request #650 from mithro/patch-1

xilinx: Adding missing inout IO port to IOBUF
This commit is contained in:
Clifford Wolf 2018-10-04 11:30:00 +02:00 committed by GitHub
commit bed6c26a6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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