whoops MTIMECMP is always 64 bits

This commit is contained in:
bbracker 2021-07-19 15:40:53 -04:00
parent fb6e618b1c
commit 76be84fa92

View File

@ -82,7 +82,7 @@ module clint (
always_ff @(posedge HCLK or negedge HRESETn)
if (~HRESETn) begin
MSIP <= 0;
MTIMECMP <= (`XLEN)'(-1);
MTIMECMP <= (64)'(-1);
// MTIMECMP is not reset
end else if (memwrite) begin
if (entryd == 16'h0000) MSIP <= HWDATA[0];
@ -112,7 +112,7 @@ module clint (
always_ff @(posedge HCLK or negedge HRESETn)
if (~HRESETn) begin
MSIP <= 0;
MTIMECMP <= (`XLEN)'(-1);
MTIMECMP <= (64)'(-1);
// MTIMECMP is not reset
end else if (memwrite) begin
if (entryd == 16'h0000) MSIP <= HWDATA[0];