x393
1.0
FPGAcodeforElphelNC393camera
status_router4.v
Go to the documentation of this file.
1
39
`timescale 1ns/1ps
40
41
module
status_router4
(
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
68
status_router2
#(
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
status_router2.10953srst
10953srst
Definition:
status_router2.v:48
status_router2.10958rq_in1
10958rq_in1
Definition:
status_router2.v:54
status_router2.10952clk
10952clk
Definition:
status_router2.v:47
status_router4.10990db_in2
[7:0] 10990db_in2
Definition:
status_router4.v:52
status_router2.10962start_out
10962start_out
Definition:
status_router2.v:59
status_router4.10994rq_in3
10994rq_in3
Definition:
status_router4.v:56
status_router4.10988rq_in1
10988rq_in1
Definition:
status_router4.v:50
status_router4.10981rst
10981rst
Definition:
status_router4.v:42
status_router4.10985rq_in0
10985rq_in0
Definition:
status_router4.v:47
status_router4.11001start_int
11001start_intwire[1:0]
Definition:
status_router4.v:66
status_router4.10995start_in3
10995start_in3
Definition:
status_router4.v:57
status_router4.10991rq_in2
10991rq_in2
Definition:
status_router4.v:53
status_router4.10983srst
10983srst
Definition:
status_router4.v:44
status_router4.10989start_in1
10989start_in1
Definition:
status_router4.v:51
status_router4.10997rq_out
10997rq_out
Definition:
status_router4.v:60
status_router4.10982clk
10982clk
Definition:
status_router4.v:43
status_router2.10951rst
10951rst
Definition:
status_router2.v:46
status_router4.10992start_in2
10992start_in2
Definition:
status_router4.v:54
status_router4.10984db_in0
[7:0] 10984db_in0
Definition:
status_router4.v:46
status_router4.status_router2
status_router2_23_i status_router2
Definition:
status_router4.v:100
status_router2.10955rq_in0
10955rq_in0
Definition:
status_router2.v:51
status_router2.10961rq_out
10961rq_out
Definition:
status_router2.v:58
status_router2.10959start_in1
10959start_in1
Definition:
status_router2.v:55
status_router4.10996db_out
[7:0] 10996db_out
Definition:
status_router4.v:59
status_router2.10954db_in0
[7:0] 10954db_in0
Definition:
status_router2.v:50
status_router4.10993db_in3
[7:0] 10993db_in3
Definition:
status_router4.v:55
status_router4.10999db_int
[1:0] 10999db_intwire[7:0]
Definition:
status_router4.v:64
status_router4.10998start_out
10998start_out
Definition:
status_router4.v:61
status_router2.10960db_out
[7:0] 10960db_out
Definition:
status_router2.v:57
status_router4.11000rq_int
11000rq_intwire[1:0]
Definition:
status_router4.v:65
status_router4
Definition:
status_router4.v:41
status_router4.10987db_in1
[7:0] 10987db_in1
Definition:
status_router4.v:49
status_router4.10986start_in0
10986start_in0
Definition:
status_router4.v:48
status_router2.10957db_in1
[7:0] 10957db_in1
Definition:
status_router2.v:53
status_router2.10956start_in0
10956start_in0
Definition:
status_router2.v:52
util_modules
status_router4.v
Generated by
1.8.12