From 44216b39670a8cb5dbfba16e31c3db287f796f1c Mon Sep 17 00:00:00 2001 From: David Harris Date: Thu, 23 Jun 2022 21:27:46 +0000 Subject: [PATCH] Fixed typo in clint --- pipelined/src/uncore/clint.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipelined/src/uncore/clint.sv b/pipelined/src/uncore/clint.sv index 3f6210ff0..4781360e5 100644 --- a/pipelined/src/uncore/clint.sv +++ b/pipelined/src/uncore/clint.sv @@ -87,7 +87,7 @@ module clint ( always_ff @(posedge HCLK or negedge HRESETn) if (~HRESETn) begin MSIP <= 0; - MTIMECMP <= 0xFFFFFFFFFFFFFFFF; // Spec says MTIMECMP is not reset, but we reset to maximum value to prevent spurious timer interrupts + MTIMECMP <= 64'hFFFFFFFFFFFFFFFF; // Spec says MTIMECMP is not reset, but we reset to maximum value to prevent spurious timer interrupts end else if (memwrite) begin if (entryd == 16'h0000) MSIP <= HWDATA[0]; if (entryd == 16'h4000) begin