Skip to content

Commit 9bbc866

Browse files
committed
entdaa: fix id width
1 parent 3c83380 commit 9bbc866

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ctrl/ccc_entdaa.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ module ccc_entdaa
196196
end
197197
SendIDBit: begin
198198
bus_tx_req_bit_o = '1;
199-
bus_tx_req_value_o = device_id[id_bit_count];
199+
bus_tx_req_value_o = {7'h0, device_id[id_bit_count[5:0]]};
200200
end
201201
ReceiveAddr: begin
202202
bus_rx_req_byte_o = '1;

0 commit comments

Comments
 (0)