Skip to content

Commit

Permalink
fix the error of 0 sized int
Browse files Browse the repository at this point in the history
  • Loading branch information
Kreijstal authored Jul 2, 2024
1 parent 67ad173 commit 019a642
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtl/i2c_master.v
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ I/O pin. This would prevent devices from stretching the clock period.
reg [7:0] m_axis_data_tdata_reg = 8'd0, m_axis_data_tdata_next;
reg m_axis_data_tvalid_reg = 1'b0, m_axis_data_tvalid_next;
reg m_axis_data_tlast_reg = 1'b0, m_axis_data_tlast_next;
reg value_has_been_written_reg =0'b0;
reg value_has_been_written_reg =1'b0;

reg scl_i_reg = 1'b1;
reg sda_i_reg = 1'b1;
Expand Down

0 comments on commit 019a642

Please sign in to comment.