mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-17 20:02:53 +08:00
24 lines
443 B
Verilog
24 lines
443 B
Verilog
|
|
|
|
module IBUFDS_IBUFDISABLE_INT (O, I, IB, IBUFDISABLE);
|
|
|
|
`ifdef XIL_TIMING
|
|
parameter LOC = "UNPLACED";
|
|
`endif // `ifdef XIL_TIMING
|
|
parameter DIFF_TERM = "FALSE";
|
|
parameter DQS_BIAS = "FALSE";
|
|
parameter IBUF_LOW_PWR = "TRUE";
|
|
parameter IOSTANDARD = "DEFAULT";
|
|
parameter USE_IBUFDISABLE = "TRUE";
|
|
|
|
localparam MODULE_NAME = "IBUFDS_IBUFDISABLE_INT";
|
|
|
|
|
|
output O;
|
|
|
|
input I;
|
|
input IB;
|
|
input IBUFDISABLE;
|
|
|
|
endmodule
|