x393  1.0
FPGAcodeforElphelNC393camera
status_router4.v
Go to the documentation of this file.
1 
39 `timescale 1ns/1ps
40 
42  input rst,
43  input clk,
44  input srst, // @ posedge clk
45  // 4 input channels
46  input [7:0] db_in0,
47  input rq_in0,
48  output start_in0, // only for the first cycle, combinatorial
49  input [7:0] db_in1,
50  input rq_in1,
51  output start_in1, // only for the first cycle, combinatorial
52  input [7:0] db_in2,
53  input rq_in2,
54  output start_in2, // only for the first cycle, combinatorial
55  input [7:0] db_in3,
56  input rq_in3,
57  output start_in3, // only for the first cycle, combinatorial
58  // output (multiplexed) channel
59  output [7:0] db_out,
60  output rq_out,
61  input start_out // only for the first cycle, combinatorial
62 );
63 
64  wire [7:0] db_int [1:0];
65  wire [1:0] rq_int;
66  wire [1:0] start_int; // only for the first cycle, combinatorial
67 
69  .FIFO_TYPE ("TWO_CYCLE") //= "ONE_CYCLE" // higher latency, but easier timing - use on some levels (others - default "ONE_CYCLE")
70  ) status_router2_top_i (
71  .rst (rst), // input
72  .clk (clk), // input
73  .srst (srst), // input
74  .db_in0 (db_int[0]), // input[7:0]
75  .rq_in0 (rq_int[0]), // input
76  .start_in0 (start_int[0]), // output
77  .db_in1 (db_int[1]), // input[7:0]
78  .rq_in1 (rq_int[1]), // input
79  .start_in1 (start_int[1]), // output
80  .db_out (db_out), // output[7:0]
81  .rq_out (rq_out), // output
82  .start_out (start_out) // input
83  );
84 
85  status_router2 status_router2_01_i (
86  .rst (rst), // input
87  .clk (clk), // input
88  .srst (srst), // input
89  .db_in0 (db_in0), // input[7:0]
90  .rq_in0 (rq_in0), // input
91  .start_in0 (start_in0), // output
92  .db_in1 (db_in1), // input[7:0]
93  .rq_in1 (rq_in1), // input
94  .start_in1 (start_in1), // output
95  .db_out (db_int[0]), // output[7:0]
96  .rq_out (rq_int[0]), // output
97  .start_out (start_int[0]) // input
98  );
99 
100  status_router2 status_router2_23_i (
101  .rst (rst), // input
102  .clk (clk), // input
103  .srst (srst), // input
104  .db_in0 (db_in2), // input[7:0]
105  .rq_in0 (rq_in2), // input
106  .start_in0 (start_in2), // output
107  .db_in1 (db_in3), // input[7:0]
108  .rq_in1 (rq_in3), // input
109  .start_in1 (start_in3), // output
110  .db_out (db_int[1]), // output[7:0]
111  .rq_out (rq_int[1]), // output
112  .start_out (start_int[1]) // input
113  );
114 
115 
116 
117 endmodule
118 
[7:0] 10990db_in2
11001start_intwire[1:0]
[7:0] 10984db_in0
status_router2_23_i status_router2
[7:0] 10996db_out
[7:0] 10954db_in0
[7:0] 10993db_in3
[1:0] 10999db_intwire[7:0]
[7:0] 10960db_out
11000rq_intwire[1:0]
[7:0] 10987db_in1
[7:0] 10957db_in1