Skip to content

Commit

Permalink
add: debug GPR.sv
Browse files Browse the repository at this point in the history
  • Loading branch information
umanachi authored and ShinyMiraidon committed Sep 22, 2023
1 parent 59220b2 commit a04250d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtl/GPR.sv
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ module GPR #(
end

assign rs1d = (rs1n == 0) ? 32'd0 : registers[rs1n];
assign rs2d = (rs1n == 0) ? 32'd0 : registers[rs1n];
assign rs2d = (rs2n == 0) ? 32'd0 : registers[rs2n];

endmodule

0 comments on commit a04250d

Please sign in to comment.