x393  1.0
FPGAcodeforElphelNC393camera
mcont_from_chnbuf_reg.v
Go to the documentation of this file.
1 
39 `timescale 1ns/1ps
40 
42  parameter CHN_NUMBER=0,
43  parameter CHN_LATENCY=2 // 0 - no extra latency in extrenal BRAM - data available next cycle after regen (1 extra from ren)
44 )(
45  input rst,
46  input clk,
47  input ext_buf_rd,
48  input [3:0] ext_buf_rchn, // ==run_chn_d valid 1 cycle ahead opf ext_buf_rd!, maybe not needed - will be generated externally
51  output reg [63:0] ext_buf_rdata, // Latency of ram_1kx32w_512x64r plus 2
52  output reg buf_rd_chn,
53  output reg rpage_nxt,
54  input [63:0] buf_rdata_chn
55 );
56  reg [63:0] buf_rdata_chn_r; /// *** temporary register to delay buffer read data - may be used to implement multi-clock mux to ease timing
59 // always @ (posedge rst or posedge clk) begin
60  always @ (posedge clk) begin
61  if (rst) buf_chn_sel <= 0;
63 
64  if (rst) buf_rd_chn <= 0;
66 
67  if (rst) latency_reg<= 0;
69 
70  end
71  always @ (posedge clk) buf_rdata_chn_r <= buf_rdata_chn; // THIS WILL BE REPLACED BY MULTI-CYCLE MUX
74 
75 
76 endmodule
77 
10689latency_regreg[CHN_LATENCY:0]