Skip to content

Commit

Permalink
CCC: ack reserved byte at the end of multi-address CCC
Browse files Browse the repository at this point in the history
  • Loading branch information
kgugala committed Jan 2, 2025
1 parent 8fe5a00 commit b006c58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ctrl/ccc.sv
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ module ccc
TxDirectAddrAck: begin
bus_tx_req_byte_o = '0;
bus_tx_req_bit_o = '1;
bus_tx_req_value_o = {7'h00, ~is_byte_our_addr};
bus_tx_req_value_o = {7'h00, ~(is_byte_our_addr | is_byte_rsvd_addr)};
end
RxSubCmdByte: begin
end
Expand Down

0 comments on commit b006c58

Please sign in to comment.