3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-11 03:33:36 +00:00

Merge pull request #3652 from martell/elvds

gowin: Add support for emulated differential output
This commit is contained in:
Miodrag Milanović 2023-02-28 06:55:25 +01:00 committed by GitHub
commit 4ff9063145
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -582,6 +582,14 @@ module IOBUF (O, IO, I, OEN);
assign I = IO;
endmodule
module ELVDS_OBUF (I, O, OB);
input I;
output O;
output OB;
assign O = I;
assign OB = ~I;
endmodule
module TLVDS_OBUF (I, O, OB);
input I;
output O;