From c2f400276cb01d179994da0de8cf02223de94409 Mon Sep 17 00:00:00 2001 From: Guillaume Chauvon <94678394+Gchauvon@users.noreply.github.com> Date: Thu, 20 Mar 2025 11:47:05 +0100 Subject: [PATCH] Verible Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- core/decoder.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/decoder.sv b/core/decoder.sv index 6f785ecd2..e6745f951 100644 --- a/core/decoder.sv +++ b/core/decoder.sv @@ -1612,7 +1612,7 @@ module decoder instruction_o.ex.cause = (CVA6Cfg.RVH && v_i) ? riscv::ENV_CALL_VSMODE : riscv::ENV_CALL_SMODE; end else if (priv_lvl_i == riscv::PRIV_LVL_U && CVA6Cfg.RVU) begin instruction_o.ex.cause = riscv::ENV_CALL_UMODE; - // we are in M-mode + // we are in M-mode end else begin instruction_o.ex.cause = riscv::ENV_CALL_MMODE; end