-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
103 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
# Processor Memory Source Files | ||
## Processor Memory Source Files | ||
|
||
This folder provides the architecture-only VHDL sources for the processor-internal memories | ||
(instruction memory "IMEM", data memory "DMEM"). Different implementations are available - but | ||
only **one** version of each (IMEM and DMEM) has to be added as actual source files. | ||
(instruction memory "IMEM", data memory "DMEM"). Different implementations are available, but | ||
only **one** version of each (IMEM and DMEM) should be added as actual source files. | ||
|
||
For the first implementation the `*.default.vhd` files should be selected. The HDL style for describing | ||
memories used by these files has proven **platform-independence** across several FPGA architectures and toolchains. | ||
For an initial setup the `*.default.vhd` files should be selected. The HDL style for describing | ||
memories used by these files has proven quite good platform-independence across several FPGA | ||
architectures and toolchains. | ||
|
||
If synthesis fails to infer actual block RAM resources from these default files, try the legacy `*.legacy.vhd` files, which | ||
provide a different HDL style. These files are intended for legacy support of older Intel/Altera Quartus versions (13.0 and older). However, | ||
these files do **not** use platform-specific macros or primitives - so they might also work for other FPGAs and toolchains. | ||
If synthesis fails to infer block RAM resources from these default files, try the legacy | ||
`*.legacy.vhd` files, which provide a different HDL style. These files are also intended for | ||
legacy support of older Intel/Altera Quartus versions (13.0 and older). However, these files | ||
still do not use platform-specific macros or primitives - so they might also work for other | ||
FPGAs and toolchains. | ||
|
||
:warning: Make sure to add the selected files from this folder also to the `neorv32` design library. | ||
> [!IMPORTANT] | ||
> Make sure to add the selected files from this folder also to the `neorv32` design library. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.