aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs
diff options
context:
space:
mode:
authorYRabbit <rabbit@yrabbit.cyou>2022-02-24 12:33:55 +1000
committerMarcelina Koƛcielnicka <mwk@0x04.net>2022-02-24 05:38:33 +0100
commit22d9bbb308009773f68e15b22280806027f7005d (patch)
tree539ff5f9ab333efc558149497e711d9f322f1b15 /techlibs
parent9b3cd4f0d81374a04393ef5d524a3c0603c1b27e (diff)
downloadyosys-22d9bbb308009773f68e15b22280806027f7005d.tar.gz
yosys-22d9bbb308009773f68e15b22280806027f7005d.tar.bz2
yosys-22d9bbb308009773f68e15b22280806027f7005d.zip
gowin: Remove unnecessary attributes
Signed-off-by: YRabbit <rabbit@yrabbit.cyou>
Diffstat (limited to 'techlibs')
-rw-r--r--techlibs/gowin/cells_sim.v5
1 files changed, 0 insertions, 5 deletions
diff --git a/techlibs/gowin/cells_sim.v b/techlibs/gowin/cells_sim.v
index 3f5340b11..b07ee6924 100644
--- a/techlibs/gowin/cells_sim.v
+++ b/techlibs/gowin/cells_sim.v
@@ -550,7 +550,6 @@ module GND(output G);
assign G = 0;
endmodule
-(* abc9_box *)
module IBUF(output O, input I);
specify
@@ -560,7 +559,6 @@ module IBUF(output O, input I);
assign O = I;
endmodule
-(* abc9_box *)
module OBUF(output O, input I);
specify
@@ -570,14 +568,12 @@ 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;
@@ -586,7 +582,6 @@ module IOBUF (O, IO, I, OEN);
assign I = IO;
endmodule
-(* abc9_box *)
module TLVDS_OBUF (I, O, OB);
input I;
output O;