Signed-off-by: YRabbit <rabbit@yrabbit.cyou>
assign G = 0;
endmodule
-(* abc9_box *)
module IBUF(output O, input I);
specify
assign O = I;
endmodule
-(* abc9_box *)
module OBUF(output O, input I);
specify
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;
assign I = IO;
endmodule
-(* abc9_box *)
module TLVDS_OBUF (I, O, OB);
input I;
output O;