x393  1.0
FPGAcodeforElphelNC393camera
simul_clk_mult.v
Go to the documentation of this file.
1 
39 `timescale 1ns/1ps
40 
42  parameter MULTIPLIER = 3,
43  parameter SKIP_FIRST = 5
44  ) (
45  input clk_in,
46  input en,
47  output clk_out
48  );
49  real phase;
50  real prev_phase = 0.0;
51  real out_half_period = 0.0;
52  integer num_period = 0;
53  reg en1 = 0;
54  reg clk_out_r = 0;
55  assign clk_out = (MULTIPLIER == 1)? clk_in: clk_out_r;
56  always @ (posedge clk_in) begin
57  phase = $realtime;
58  if (num_period >= SKIP_FIRST) begin
60  en1 = 1;
61  end
62  prev_phase = phase;
63  num_period = num_period + 1;
64  end
65 
66  always @ (posedge clk_in) if (en && en1) begin
67  clk_out_r = 1;
68  repeat (MULTIPLIER - 1) begin
71  end
73  end
74 
75 endmodule
76 
9202num_periodinteger