You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
413 B
Verilog
25 lines
413 B
Verilog
// wtf didn't check what it actually does!
|
|
|
|
module IDELAYE2 #(
|
|
parameter CINVCTRL_SEL,
|
|
parameter DELAY_SRC,
|
|
parameter HIGH_PERFORMANCE_MODE,
|
|
parameter IDELAY_TYPE,
|
|
parameter IDELAY_VALUE,
|
|
parameter PIPE_SEL,
|
|
parameter REFCLK_FREQUENCY,
|
|
parameter SIGNAL_PATTERN
|
|
)(
|
|
input C,
|
|
input CE,
|
|
input IDATAIN,
|
|
input INC,
|
|
input LD,
|
|
input LDPIPEEN,
|
|
output DATAOUT
|
|
);
|
|
|
|
assign DATAOUT = IDATAIN;
|
|
endmodule
|
|
|