1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-17 20:02:53 +08:00
oh/xilibs/hdl/IBUFGDS.v
Andreas Olofsson 62c2c0e654 Adding comments
2015-04-23 17:52:46 -04:00

21 lines
224 B
Verilog

module IBUFGDS (/*AUTOARG*/
// Outputs
O,
// Inputs
I, IB
);
parameter DIFF_TERM=0;
parameter IOSTANDARD=0;
input I;
input IB;
output O;
assign O = I & ~IB;
endmodule // IBUFGDS