1
0
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:
Alex Forencich 2023-06-25 18:35:21 -07:00
parent 344fcd45fc
commit edc5903157
2 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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