aboutsummaryrefslogtreecommitdiff
path: root/src/pc_reg.v
diff options
context:
space:
mode:
Diffstat (limited to 'src/pc_reg.v')
-rw-r--r--src/pc_reg.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pc_reg.v b/src/pc_reg.v
index 2bdb540..11fe9ba 100644
--- a/src/pc_reg.v
+++ b/src/pc_reg.v
@@ -8,7 +8,7 @@ module pc_reg (
output reg [31:0] pc
);
-parameter PC_INITIAL = 32'h0001_0000;
+`include "include/consts.vh"
always @ (posedge clk or negedge rstn) begin
if (!rstn) pc <= PC_INITIAL;