Skip to content

Commit

Permalink
Verible !
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Gouedo <[email protected]>
  • Loading branch information
Pascal Gouedo committed Jul 31, 2023
1 parent 6beb822 commit 260feb4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rtl/cv32e40p_cs_registers.sv
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 260feb4

Please sign in to comment.