mirror of
https://github.com/stnolting/neorv32.git
synced 2025-04-24 22:27:21 -04:00
[top] minor sanity-check re-wording
This commit is contained in:
parent
ff4d9a581d
commit
ac988b925f
1 changed files with 2 additions and 2 deletions
|
@ -373,10 +373,10 @@ begin
|
|||
-- internal memory sizes --
|
||||
assert not ((imem_size_valid_c = false) and (MEM_INT_IMEM_EN = true)) report
|
||||
"NEORV32 PROCESSOR CONFIG WARNING: Configured internal IMEM size (" & natural'image(MEM_INT_IMEM_SIZE) & " bytes) is not a power of two. " &
|
||||
"Auto-increasing memory size to the next power of two (" & natural'image(imem_size_c) & " bytes)" severity warning;
|
||||
"Auto-adjusting memory size to the next power of two (" & natural'image(imem_size_c) & " bytes)" severity warning;
|
||||
assert not ((dmem_size_valid_c = false) and (MEM_INT_DMEM_EN = true)) report
|
||||
"NEORV32 PROCESSOR CONFIG WARNING: Configured internal DMEM size (" & natural'image(MEM_INT_DMEM_SIZE) & " bytes) is not a power of two. " &
|
||||
"Auto-increasing memory size to the next power of two (" & natural'image(dmem_size_c) & " bytes)" severity warning;
|
||||
"Auto-adjusting memory size to the next power of two (" & natural'image(dmem_size_c) & " bytes)" severity warning;
|
||||
|
||||
-- caches --
|
||||
assert not ((ICACHE_EN = true) and (CPU_EXTENSION_RISCV_Zifencei = false)) report
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue