neorv32/sw
FPGALover 3c2a913175 Update sw/common/make_image.bat
adding changes to install the vhd to the core folder on windows
2024-02-29 22:28:18 +00:00
..
bootloader modifying Makefiles to make them compatible with windows file directory 2024-02-27 15:43:22 -08:00
common Update sw/common/make_image.bat 2024-02-29 22:28:18 +00:00
example modifying Makefiles to make them compatible with windows file directory 2024-02-27 15:43:22 -08:00
image_gen Adding Files 2024-02-24 00:25:27 -08:00
lib Adding Files 2024-02-24 00:25:27 -08:00
ocd-firmware modifying Makefiles to make them compatible with windows file directory 2024-02-27 15:43:22 -08:00
openocd Adding Files 2024-02-24 00:25:27 -08:00
svd Adding Files 2024-02-24 00:25:27 -08:00
README.md Adding Files 2024-02-24 00:25:27 -08:00

README.md

Software Framework

This folder provides the core of the NEORV32 software framework. This is a short description of the main folders.

bootloader

Source(s) of the default NEORV32 bootloader. A pre-built image is already installed into the rtl design via the rtl/core/neorv32_bootloader_image.vhd file.

common

NEORV32-specific common files for all bootloader and application programs: linker script for executable generation and processor start-up code.

example

Several example programs for testing and for getting started.

image_gen

This folder contains a simple program that is used to create NEORV32 executables (for upload via bootloader) and VHDL memory initialization files (for memory-persistent applications and for the bootloader). This program is automatically compiled using the native GCC when invoking one of the application compilation makefiles.

lib

Core libraries (sources and header files) and helper functions for using the processor peripherals and the CPU itself.

ocd-firmware

Firmware (debugger "park loop") for the on-chip debugger. This folder is just for documenting the source code. Modifying the sources is not recommended as this could break the on-chip debugger.

openocd

Configuration file for openOCD to connect to the NEORV32 on-chip debugger via JTAG.

svd

Contains a CMSIS-SVD compatible system view description file including all peripherals.