Skip to content

Commit

Permalink
Fix RV32E shifts
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelBell committed Aug 20, 2023
1 parent f00a88c commit a7c883d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion picorv32.v
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,8 @@ module picorv32 #(
reg instr_getq, instr_setq, instr_retirq, instr_maskirq, instr_waitirq, instr_timer;
wire instr_trap;

reg [regindex_bits-1:0] decoded_rd, decoded_rs1, decoded_rs2;
reg [regindex_bits-1:0] decoded_rd, decoded_rs1;
reg [4:0] decoded_rs2;
reg [31:0] decoded_imm, decoded_imm_j;
reg decoder_trigger;
reg decoder_trigger_q;
Expand Down

0 comments on commit a7c883d

Please sign in to comment.