Skip to content

Commit

Permalink
Fix AxiReadConverter when serializing without FIFO
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanstraten committed Nov 5, 2019
1 parent c549599 commit 6a2b8be
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hardware/axi/AxiReadConverter.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -293,10 +293,10 @@ begin
buf_slv_req_addr <= buf_mst_req_addr;
buf_slv_req_len <= buf_mst_req_len;

buf_mst_resp_ready <= buf_slv_resp_ready;
buf_slv_resp_valid <= buf_mst_resp_valid;
buf_slv_resp_data <= buf_mst_resp_data;
buf_slv_resp_last <= buf_mst_resp_last;
buf_slv_resp_ready <= buf_mst_resp_ready;
buf_mst_resp_valid <= buf_slv_resp_valid;
buf_mst_resp_data <= buf_slv_resp_data;
buf_mst_resp_last <= buf_slv_resp_last;
end generate;
---------------------------------------------------------------------------
serializer: StreamGearboxSerializer
Expand Down

0 comments on commit 6a2b8be

Please sign in to comment.