1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-17 20:02:53 +08:00
oh/stubs/hdl/OBUFTDS.v
Andreas Olofsson b1a9f502ca Xilinx models
-adding ODDR model
-configuring the ecfg (rx/tx/clk) in testbench
2015-04-15 17:54:19 -04:00

22 lines
330 B
Verilog

module OBUFTDS (/*AUTOARG*/
// Outputs
O, OB,
// Inputs
I, T
);
parameter IOSTANDARD=0;
parameter SLEW=0;
input I; //input
input T; //tristate signal
output O; //output
output OB; //output_bar
assign O = T ? 1'bz : I;
assign OB = T ? 1'bz : ~I;
endmodule // OBUFTDS