From 260feb45e5f5cb0b5c501c3228d49af9672d8266 Mon Sep 17 00:00:00 2001 From: Pascal Gouedo Date: Mon, 31 Jul 2023 15:12:30 +0200 Subject: [PATCH] Verible ! Signed-off-by: Pascal Gouedo --- rtl/cv32e40p_cs_registers.sv | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rtl/cv32e40p_cs_registers.sv b/rtl/cv32e40p_cs_registers.sv index ebcaa43b7..5782b2957 100644 --- a/rtl/cv32e40p_cs_registers.sv +++ b/rtl/cv32e40p_cs_registers.sv @@ -506,7 +506,9 @@ module cv32e40p_cs_registers CSR_MARCHID: csr_rdata_int = MARCHID; // mimpid, Machine Implementation ID - CSR_MIMPID: csr_rdata_int = (FPU || COREV_PULP || COREV_CLUSTER || (NUM_MHPMCOUNTERS > 1)) ? 32'h1 : 'b0; + CSR_MIMPID: begin + csr_rdata_int = (FPU || COREV_PULP || COREV_CLUSTER || (NUM_MHPMCOUNTERS > 1)) ? 32'h1 : 'b0; + end // unimplemented, read 0 CSRs CSR_MTVAL: csr_rdata_int = 'b0;