Skip to content

Commit

Permalink
Fix comment for register addresses in syscon
Browse files Browse the repository at this point in the history
I'm pretty sure this should be 0x33, not 0x3F.

Signed-off-by: Charles Manning <[email protected]>
  • Loading branch information
cdhmanning authored and olofk committed Feb 21, 2024
1 parent d48573f commit 78c8aef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtl/veerwolf_syscon.v
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ module veerwolf_syscon
if (i_wb_sel[2]) mtimecmp[55:48] <= i_wb_dat[23:16];
if (i_wb_sel[3]) mtimecmp[63:56] <= i_wb_dat[31:24];
end
12 : begin //0x30-3f
12 : begin //0x30-33
if (i_wb_sel[0]) irq_timer_cnt[7:0] <= i_wb_dat[7:0] ;
if (i_wb_sel[1]) irq_timer_cnt[15:8] <= i_wb_dat[15:8] ;
if (i_wb_sel[2]) irq_timer_cnt[23:16] <= i_wb_dat[23:16];
Expand Down

0 comments on commit 78c8aef

Please sign in to comment.