diff --git a/xgriscv_parts.v b/xgriscv_parts.v index 312f84f85b641061088e09f6b6218db46c26b3ee..a35002d843adb161c9b38ab84d9fe6f63f3a225f 100644 --- a/xgriscv_parts.v +++ b/xgriscv_parts.v @@ -10,7 +10,7 @@ module pcenr ( always @(posedge clk, posedge reset) // if (reset) q <= 0; if (reset) - q <= `ADDR_SIZE'h80000000 ; + q <= `ADDR_SIZE'h00000000 ; else if (en) q <= d; endmodule