mirror of https://github.com/YosysHQ/yosys.git
gowin: Add support for emulated differential output
This commit is contained in:
parent
d11cb6901f
commit
dbc8b77222
|
@ -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 New Issue