1 |
60 |
zero_gravi |
<<<
|
2 |
|
|
:sectnums:
|
3 |
|
|
==== Instruction Memory (IMEM)
|
4 |
|
|
|
5 |
|
|
[cols="<3,<3,<4"]
|
6 |
|
|
[frame="topbot",grid="none"]
|
7 |
|
|
|=======================
|
8 |
|
|
| Hardware source file(s): | neorv32_imem.vhd |
|
9 |
|
|
| Software driver file(s): | none | _implicitly used_
|
10 |
|
|
| Top entity port: | none |
|
11 |
|
|
| Configuration generics: | _MEM_INT_IMEM_EN_ | implement processor-internal IMEM when _true_
|
12 |
|
|
| | _MEM_INT_IMEM_SIZE_ | IMEM size in bytes
|
13 |
61 |
zero_gravi |
| | _INT_BOOTLOADER_EN_ | use internal bootlodaer when _true_ (implements IMEM as ROM)
|
14 |
60 |
zero_gravi |
| CPU interrupts: | none |
|
15 |
|
|
|=======================
|
16 |
|
|
|
17 |
61 |
zero_gravi |
[NOTE]
|
18 |
|
|
The default `neorv32_imem.vhd` HDL source file provides a _generic_ memory design that infers embedded
|
19 |
|
|
memory for _larger_ memory configurations. You might need to replace/modify the source file in order to use
|
20 |
|
|
platform-specific features (like advanced memory resources) or to improve technology mapping and/or timing.
|
21 |
|
|
|
22 |
60 |
zero_gravi |
Implementation of the processor-internal instruction memory is enabled via the processor's
|
23 |
|
|
_MEM_INT_IMEM_EN_ generic. The size in bytes is defined via the _MEM_INT_IMEM_SIZE_ generic. If the
|
24 |
|
|
IMEM is implemented, the memory is mapped into the instruction memory space and located right at the
|
25 |
|
|
beginning of the instruction memory space (default `ispace_base_c` = 0x00000000).
|
26 |
|
|
|
27 |
|
|
By default, the IMEM is implemented as RAM, so the content can be modified during run time. This is
|
28 |
|
|
required when using a bootloader that can update the content of the IMEM at any time. If you do not need
|
29 |
|
|
the bootloader anymore – since your application development has completed and you want the program to
|
30 |
61 |
zero_gravi |
permanently reside in the internal instruction memory – the IMEM is automatically implemented as _pre-intialized_
|
31 |
|
|
ROM when the processor-internal bootloader is disabled (_INT_BOOTLOADER_EN_ = _false_).
|
32 |
60 |
zero_gravi |
|
33 |
|
|
When the IMEM is implemented as ROM, it will be initialized during synthesis with the actual application
|
34 |
|
|
program image. The compiler toolchain will generate a VHDL initialization
|
35 |
|
|
file `rtl/core/neorv32_application_image.vhd`, which is automatically inserted into the IMEM. If
|
36 |
|
|
the IMEM is implemented as RAM (default), the memory will **not be initialized** at all.
|