mirror of
https://github.com/corundum/corundum.git
synced 2025-01-16 08:12:53 +08:00
fpga/common: Fix FIFO status connections
Signed-off-by: Alex Forencich <alex@alexforencich.com>
This commit is contained in:
parent
344fcd45fc
commit
edc5903157
@ -174,9 +174,9 @@ for (n = 0; n < PORTS; n = n + 1) begin : fifo
|
|||||||
.m_axis_tuser(axis_fifo_tuser[n*USER_WIDTH +: USER_WIDTH]),
|
.m_axis_tuser(axis_fifo_tuser[n*USER_WIDTH +: USER_WIDTH]),
|
||||||
|
|
||||||
// Status
|
// Status
|
||||||
.status_overflow(status_overflow),
|
.status_overflow(status_overflow[n]),
|
||||||
.status_bad_frame(status_bad_frame),
|
.status_bad_frame(status_bad_frame[n]),
|
||||||
.status_good_frame(status_good_frame)
|
.status_good_frame(status_good_frame[n])
|
||||||
);
|
);
|
||||||
|
|
||||||
end
|
end
|
||||||
|
@ -232,9 +232,9 @@ for (n = 0; n < PORTS; n = n + 1) begin : fifo
|
|||||||
.m_axis_tuser(m_axis_tuser[n*USER_WIDTH +: USER_WIDTH]),
|
.m_axis_tuser(m_axis_tuser[n*USER_WIDTH +: USER_WIDTH]),
|
||||||
|
|
||||||
// Status
|
// Status
|
||||||
.status_overflow(status_overflow),
|
.status_overflow(status_overflow[n]),
|
||||||
.status_bad_frame(status_bad_frame),
|
.status_bad_frame(status_bad_frame[n]),
|
||||||
.status_good_frame(status_good_frame)
|
.status_good_frame(status_good_frame[n])
|
||||||
);
|
);
|
||||||
|
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user