aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--techlibs/gowin/cells_sim.v11
1 files changed, 11 insertions, 0 deletions
diff --git a/techlibs/gowin/cells_sim.v b/techlibs/gowin/cells_sim.v
index cc2ad3df5..3f5340b11 100644
--- a/techlibs/gowin/cells_sim.v
+++ b/techlibs/gowin/cells_sim.v
@@ -570,12 +570,14 @@ module OBUF(output O, input I);
assign O = I;
endmodule
+(* abc9_box *)
module TBUF (O, I, OEN);
input I, OEN;
output O;
assign O = OEN ? 1'bz : I;
endmodule
+(* abc9_box *)
module IOBUF (O, IO, I, OEN);
input I,OEN;
output O;
@@ -584,6 +586,15 @@ module IOBUF (O, IO, I, OEN);
assign I = IO;
endmodule
+(* abc9_box *)
+module TLVDS_OBUF (I, O, OB);
+ input I;
+ output O;
+ output OB;
+ assign O = I;
+ assign OB = ~I;
+endmodule
+
module GSR (input GSRI);
wire GSRO = GSRI;
endmodule