Skip to content

Commit

Permalink
[rtl] CPU: add X ISA extension notifier
Browse files Browse the repository at this point in the history
X ISA extension = custom (neorv32-specific) RISC-V extension
  • Loading branch information
stnolting committed Jun 30, 2024
1 parent 045a2ce commit a341349
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions rtl/core/neorv32_cpu.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ begin
cond_sel_string_f(CPU_EXTENSION_RISCV_C, "c", "" ) &
cond_sel_string_f(CPU_EXTENSION_RISCV_B, "b", "" ) &
cond_sel_string_f(CPU_EXTENSION_RISCV_U, "u", "" ) &
cond_sel_string_f(true, "x", "" ) & -- always enabled
cond_sel_string_f(true, "_zicsr", "" ) & -- always enabled
cond_sel_string_f(CPU_EXTENSION_RISCV_Zicntr, "_zicntr", "" ) &
cond_sel_string_f(CPU_EXTENSION_RISCV_Zicond, "_zicond", "" ) &
Expand Down

0 comments on commit a341349

Please sign in to comment.