mirror of
https://github.com/stnolting/neorv32.git
synced 2025-04-24 22:27:21 -04:00
[imem] minor assertion cleanup
This commit is contained in:
parent
8101ae7185
commit
9762f9869b
1 changed files with 3 additions and 2 deletions
|
@ -63,8 +63,9 @@ begin
|
|||
cond_sel_string_f(IMEM_AS_IROM, "pre-initialized ROM.", "blank RAM.") severity note;
|
||||
|
||||
assert not ((IMEM_AS_IROM = true) and (imem_app_size_c > IMEM_SIZE)) report
|
||||
"[NEORV32] Application (image = " & natural'image(imem_app_size_c) &
|
||||
" bytes) does not fit into processor-internal IMEM (ROM = " & natural'image(IMEM_SIZE) & " bytes)!" severity error;
|
||||
"[NEORV32] Application image (" & natural'image(imem_app_size_c) &
|
||||
" bytes) does not fit into processor-internal IMEM (" &
|
||||
natural'image(IMEM_SIZE) & " bytes)!" severity error;
|
||||
|
||||
|
||||
-- Implement IMEM as pre-initialized ROM --------------------------------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue