Skip to content

Commit

Permalink
Switch to fifo_v2 implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
zarubaf committed Sep 24, 2018
1 parent 328cbe0 commit a3aeda5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/axi_to_axi_lite.sv
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ module axi_to_axi_lite #(
meta_rd_t meta_rd;
meta_wr_t meta_wr;

fifo #(.dtype(meta_rd_t), .DEPTH(DEPTH_FIFO_RD)) i_fifo_rd (
fifo_v1 #(.dtype(meta_rd_t), .DEPTH(DEPTH_FIFO_RD)) i_fifo_rd (
.clk_i ( clk_i ),
.rst_ni ( rst_ni ),
.testmode_i ( testmode_i ),
Expand All @@ -88,7 +88,7 @@ module axi_to_axi_lite #(
.pop_i ( in.r_valid & in.r_ready & in.r_last )
);

fifo #(.dtype(meta_wr_t), .DEPTH(DEPTH_FIFO_WR)) i_fifo_wr (
fifo_v1 #(.dtype(meta_wr_t), .DEPTH(DEPTH_FIFO_WR)) i_fifo_wr (
.clk_i ( clk_i ),
.rst_ni ( rst_ni ),
.testmode_i ( testmode_i ),
Expand Down

0 comments on commit a3aeda5

Please sign in to comment.