From b76c371e451b50d42ffa9b107fe8c3f5ca8f8f17 Mon Sep 17 00:00:00 2001 From: David Harris Date: Wed, 18 Oct 2023 05:38:36 -0700 Subject: [PATCH] Config file cleanup --- config/rv32i/config.vh | 2 +- config/rv64i/config.vh | 2 +- sim/lint-wally | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/rv32i/config.vh b/config/rv32i/config.vh index 008687007..5c34ae413 100644 --- a/config/rv32i/config.vh +++ b/config/rv32i/config.vh @@ -36,7 +36,7 @@ localparam XLEN = 32'd32; localparam IEEE754 = 0; // I -localparam MISA = (32'h00000104); +localparam MISA = (32'h00000100); localparam ZICSR_SUPPORTED = 0; localparam ZIFENCEI_SUPPORTED = 0; localparam COUNTERS = 0; diff --git a/config/rv64i/config.vh b/config/rv64i/config.vh index 35fc2bdfa..ea668a45e 100644 --- a/config/rv64i/config.vh +++ b/config/rv64i/config.vh @@ -36,7 +36,7 @@ localparam XLEN = 32'd64; localparam IEEE754 = 0; // MISA RISC-V configuration per specification -localparam MISA = (32'h00000104); +localparam MISA = (32'h00000100); localparam ZICSR_SUPPORTED = 0; localparam ZIFENCEI_SUPPORTED = 0; localparam COUNTERS = 0; diff --git a/sim/lint-wally b/sim/lint-wally index 97bd2a877..263fb864f 100755 --- a/sim/lint-wally +++ b/sim/lint-wally @@ -16,7 +16,7 @@ done echo "All lints run with no errors or warnings" # --lint-only just runs lint rather than trying to compile and simulate -# -I points to the include directory where files such as `include wally-config.vh are found +# -I points to the include directory where files such as `include config.vh are found # For more exhaustive (and sometimes spurious) warnings, add --Wall to the Verilator command # Unfortunately, this produces a bunch of UNUSED and UNDRIVEN signal warnings in blocks that are configured to not exist.