Skip to content

Commit

Permalink
Make localparam consist with dut
Browse files Browse the repository at this point in the history
The localparam PC_INIT is defined as 'h200 instead of 32'h0 inside dut
  • Loading branch information
fennecJ committed Oct 14, 2024
1 parent 89c576d commit 0dc71d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion property/isa.sv
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ rv32i_inst_t wb_inst_dc;
//pipeline follower

localparam logic [31:0] NOP = 32'h13;
localparam logic [31:0] PC_INIT = 32'h0;
localparam logic [31:0] PC_INIT = 'h200;


//inst info
Expand Down

0 comments on commit 0dc71d9

Please sign in to comment.