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:
commit
4ff9063145
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue