x393  1.0
FPGAcodeforElphelNC393camera
idelay_ctrl.v
Go to the documentation of this file.
1 
39 `timescale 1ns/1ps
40 
42 //SuppressWarnings VEditor - IODELAY_GRP used in (* *) construnt
43 # ( parameter IODELAY_GRP = "IODELAY_MEMORY"
44 ) (
45  input refclk,
46  input rst,
47  output rdy
48 );
49 `ifndef IGNORE_ATTR
50  (* IODELAY_GROUP = IODELAY_GRP *)
51 `endif
52 
53 IDELAYCTRL idelay_ctrl_i(
54  .RDY(rdy),
55  .REFCLK(refclk),
56  .RST(rst));
57 endmodule
58 
59 
11255IODELAY_GRP"IODELAY_MEMORY"
Definition: idelay_ctrl.v:43
idelay_ctrl_i IDELAYCTRL
Definition: idelay_ctrl.v:53