mirror of
https://github.com/stnolting/neorv32.git
synced 2025-04-24 06:07:52 -04:00
rtl: processor_templates: enable Zicntr ISA extension on minimal templates (#1196)
This commit is contained in:
commit
8ab1fecf68
2 changed files with 4 additions and 0 deletions
|
@ -51,6 +51,8 @@ begin
|
|||
CLOCK_FREQUENCY => CLOCK_FREQUENCY, -- clock frequency of clk_i in Hz
|
||||
-- Boot Configuration --
|
||||
BOOT_MODE_SELECT => 2, -- boot from pre-initialized interal IMEM
|
||||
-- RISC-V CPU Extensions --
|
||||
RISCV_ISA_Zicntr => true, -- implement base counters?
|
||||
-- Internal Instruction memory --
|
||||
MEM_INT_IMEM_EN => MEM_INT_IMEM_EN, -- implement processor-internal instruction memory
|
||||
MEM_INT_IMEM_SIZE => MEM_INT_IMEM_SIZE, -- size of processor-internal instruction memory in bytes
|
||||
|
|
|
@ -57,6 +57,8 @@ begin
|
|||
CLOCK_FREQUENCY => CLOCK_FREQUENCY, -- clock frequency of clk_i in Hz
|
||||
-- Boot Configuration --
|
||||
BOOT_MODE_SELECT => 0, -- boot via internal bootloader
|
||||
-- RISC-V CPU Extensions --
|
||||
RISCV_ISA_Zicntr => true, -- implement base counters?
|
||||
-- Internal Instruction memory --
|
||||
MEM_INT_IMEM_EN => MEM_INT_IMEM_EN, -- implement processor-internal instruction memory
|
||||
MEM_INT_IMEM_SIZE => MEM_INT_IMEM_SIZE, -- size of processor-internal instruction memory in bytes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue