From 856a1079cc90e8249d12d8f4b2f70c77fe5aca90 Mon Sep 17 00:00:00 2001 From: Noah Boorstin Date: Sun, 28 Feb 2021 16:19:03 +0000 Subject: [PATCH] busybear: change sstatus, mstatus reset value --- wally-pipelined/src/privileged/csrsr.sv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wally-pipelined/src/privileged/csrsr.sv b/wally-pipelined/src/privileged/csrsr.sv index 05ce79583..83743c456 100644 --- a/wally-pipelined/src/privileged/csrsr.sv +++ b/wally-pipelined/src/privileged/csrsr.sv @@ -116,8 +116,8 @@ module csrsr ( STATUS_SPIE <= 0; //`S_SUPPORTED; STATUS_UPIE <= 0; // `U_SUPPORTED; STATUS_MIE <= 0; // Per Priv 3.3 - STATUS_SIE <= `S_SUPPORTED; - STATUS_UIE <= `U_SUPPORTED; + STATUS_SIE <= 0; //`S_SUPPORTED; + STATUS_UIE <= 0; //`U_SUPPORTED; end else if (~StallW) begin if (WriteMSTATUSM) begin STATUS_SUM_INT <= CSRWriteValM[18];