Skip to content

Commit

Permalink
WIP: Fix for pkt proc.
Browse files Browse the repository at this point in the history
Signed-off-by: Anderson Ignacio <[email protected]>
  • Loading branch information
aignacio committed Dec 20, 2022
1 parent 2df4c7d commit beb77a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ni/pkt_proc.sv
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ module pkt_proc

if (~wr_txn_ff && (pkt_out_req_i.pkt_sz > 0)) begin
next_wr_txn = pkt_out_resp_o.ready;
next_pkt_cnt = (pkt_out_req_i.pkt_sz-'d1);
next_pkt_cnt = (next_wr_txn) ? (pkt_out_req_i.pkt_sz-'d1) : 'd0;
end

if (wr_txn_ff && (pkt_cnt_ff > 0) && pkt_out_resp_o.ready) begin
Expand Down

0 comments on commit beb77a9

Please sign in to comment.