1
0
mirror of https://github.com/corundum/corundum.git synced 2025-01-30 08:32:52 +08:00

Update FIFO instantiations

This commit is contained in:
Alex Forencich 2018-10-25 16:06:32 -07:00
parent ded363b471
commit be51f2b472
2 changed files with 12 additions and 12 deletions

View File

@ -133,9 +133,9 @@ code_fifo_inst (
.m_axis_tdest(),
.m_axis_tuser(code_fifo_out_tuser),
// Status
.overflow(),
.bad_frame(),
.good_frame()
.status_overflow(),
.status_bad_frame(),
.status_good_frame()
);
reg [7:0] data_fifo_in_tdata;
@ -180,9 +180,9 @@ data_fifo_inst (
.m_axis_tdest(),
.m_axis_tuser(),
// Status
.overflow(),
.bad_frame(),
.good_frame()
.status_overflow(),
.status_bad_frame(),
.status_good_frame()
);
always @* begin

View File

@ -180,9 +180,9 @@ frame_fifo_inst (
.m_axis_tdest(m_axis_tdest),
.m_axis_tuser(m_axis_tuser),
// Status
.overflow(),
.bad_frame(),
.good_frame()
.status_overflow(),
.status_bad_frame(),
.status_good_frame()
);
axis_fifo #(
@ -217,9 +217,9 @@ header_fifo_inst (
.m_axis_tdest(),
.m_axis_tuser(),
// Status
.overflow(),
.bad_frame(),
.good_frame()
.status_overflow(),
.status_bad_frame(),
.status_good_frame()
);
endmodule