Skip to content

Commit

Permalink
[src] update CPU ISA generics
Browse files Browse the repository at this point in the history
split B ISA extension into sub-extensions
  • Loading branch information
stnolting committed Oct 1, 2024
1 parent fa69eca commit f3a6a5b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/neorv32_verilog_wrapper.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ begin
INT_BOOTLOADER_EN => true, -- boot configuration: boot explicit bootloader
-- RISC-V CPU Extensions --
RISCV_ISA_A => true, -- implement atomic memory operations extension?
RISCV_ISA_B => true, -- implement bit-manipulation extension?
RISCV_ISA_C => true, -- implement compressed extension?
RISCV_ISA_M => true, -- implement mul/div extension?
RISCV_ISA_U => true, -- implement user mode extension?
RISCV_ISA_Zba => true, -- implement shifted-add bit-manipulation extension
RISCV_ISA_Zbb => true, -- implement basic bit-manipulation extension
RISCV_ISA_Zbkx => true, -- implement cryptography crossbar permutation extension?
RISCV_ISA_Zfinx => true, -- implement 32-bit floating-point extension (using INT regs!)
RISCV_ISA_Zicntr => true, -- implement base counters?
Expand Down

0 comments on commit f3a6a5b

Please sign in to comment.