- Overview
- Project Status
- Features
- FPGA Implementation Results
- Performance
- Top Entities
- Getting Started
- Contribute/Feedback/Questions
- Legal
The NEORV32 Processor is a customizable microcontroller-like system on chip (SoC) that is based on the RISC-V-compliant NEORV32 CPU. The processor is intended as ready-to-go auxiliary processor within a larger SoC designs or as stand-alone custom microcontroller.
The projectβs change log is available in the CHANGELOG.md file in the root directory of this repository. To see the changes between releases visit the project's release page. For more detailed information take a look at the π NEORV32 data sheet (pdf).
- RISC-V-compliant 32-bit
rv32i
NEORV32 CPU, compliant to- Subset of the Unprivileged ISA Specification (Version 2.2)
- Subset of the Privileged Architecture Specification (Version 1.12-draft)
- Optional RISC-V CPU extensions
A
- atomic memory access instructionsC
- compressed instructions (16-bit)E
- embedded CPU (reduced register file)M
- integer multiplication and division hardwareU
- less-privileged user modeZicsr
- control and status register access instructions (+ exception/irq system)Zifencei
- instruction stream synchronizationPMP
- physical memory protection
- Full-scale RISC-V microcontroller system / SoC NEORV32 Processor with optional submodules
- Software framework
- core libraries for high-level usage of the provided functions and peripherals
- application compilation based on GNU makefiles
- GCC-based toolchain (pre-compiled toolchains available)
- runtime environment
- several example programs
- doxygen-based documentation: available on GitHub pages
- FreeRTOS port available
- Full-blown data sheet (pdf)
- Completely described in behavioral, platform-independent VHDL - no primitives, macros, etc.
- Fully synchronous design, no latches, no gated clocks
- Small hardware footprint and high operating frequency
- From zero to hello_world: Completely open source and documented.
- Plain VHDL without technology-specific parts like attributes, macros or primitives.
- Easy to use β working out of the box.
- Clean synchronous design, no wacky combinatorial interfaces.
- Be as small as possible β but with a reasonable size-performance tradeoff.
- Be as RISC-V-compliant as possible.
- The processor has to fit in a Lattice iCE40 UltraPlus 5k low-power FPGA running at 20+ MHz.
The processor is synthesizable (tested on real hardware using Intel Quartus Prime, Xilinx Vivado and Lattice Radiant/Synplify Pro) and can successfully execute all the provided example programs including the CoreMark benchmark.
The processor passes the official rv32_m/C
, rv32_m/I
, rv32_m/M
, rv32_m/privilege
and rv32_m/Zifencei
RISC-V compliance tests (new framework v2).
Project component | CI status | Note |
---|---|---|
NEORV32 processor | ||
Pre-built toolchain | ||
RISC-V compliance test | See riscv-compliance/README.md |
- Use LaTeX for data sheet
- Further size and performance optimization (work in progress)
- A cache for the external memory/bus interface (work in progress)
- Burst mode for the external memory/bus interface
- RISC-V
B
extension (bitmanipulation) (shelved) - Synthesis results (+ wrappers?) for more/specific platforms
- More support for FreeRTOS
- Port additional RTOSs (like Zephyr or RIOT)
- Single-precision floating point unit (
F
) (planned) - Implement further RISC-V (or custom?) CPU extensions
- Add debugger (RISC-V debug spec)
- Add memory-mapped trigger to testbench to quit simulation (using VHDL2008's
use std.env.finish;
) - but how? π€ - ...
- Ideas?
The full-blown data sheet of the NEORV32 Processor and CPU is available as pdf file: π NEORV32 data sheet.
The NEORV32 Processor provides a full-scale microcontroller-like SoC based on the NEORV32 CPU. The setup is highly customizable via the processor's top generics and already provides the following optional modules:
- processor-internal data and instruction memories (DMEM / IMEM)
- internal Bootloader with UART console and automatic application boot from SPI flash option
- machine system timer (MTIME), RISC-V-compliant
- watchdog timer (WDT)
- universal asynchronous receiver and transmitter (UART) with simulation output option via text.io
- 8/16/24/32-bit serial peripheral interface controller (SPI) with 8 dedicated chip select lines
- two wire serial interface controller (TWI), with optional clock-stretching, compatible to the IΒ²C standard
- general purpose parallel IO port (GPIO), 32xOut & 32xIn, with pin-change interrupt
- 32-bit external bus interface, Wishbone b4 compliant (WISHBONE), standard or pipelined handshake/transactions mode
- wrapper for AXI4-Lite Master Interface (see AXI Connectivity)
- PWM controller with 4 channels and 8-bit duty cycle resolution (PWM)
- GARO-based true random number generator (TRNG)
- custom functions units (CFU0 and CFU1) for tightly-coupled custom co-processors
- system configuration information memory to check hardware configuration by software (SYSINFO, mandatory - not optional)
The NEORV32 CPU is compliant to the
official RISC-V specifications (2.2) including a subset of the
RISC-V privileged architecture specifications (1.12-draft)
tested via the official RISC-V Compliance Test Framework
(see riscv-compliance/README
).
More information regarding the CPU including a detailed list of the instruction set and the available CSRs can be found in the π NEORV32 data sheet.
General:
- Modified Harvard architecture (separate CPU interfaces for data and instructions; NEORV32 processor: Single processor-internal bus via I/D mux)
- Two stages in-order pipeline (FETCH, EXECUTE); each stage uses a multi-cycle processing scheme
- No hardware support of unaligned accesses - they will trigger an exception
- BIG-ENDIAN byte-order, processor's external memory interface allows endianness configuration to connect to system with different endianness
- All reserved or unimplemented instructions will raise an illegal instruction exception
- Privilege levels:
machine
mode,user
mode (if enabled viaU
extension) - Official RISC-V open-source architecture ID
RV32I base instruction set (I
extension):
- ALU instructions:
LUI
AUIPC
ADDI
SLTI
SLTIU
XORI
ORI
ANDI
SLLI
SRLI
SRAI
ADD
SUB
SLL
SLT
SLTU
XOR
SRL
SRA
OR
AND
- Jump and branch instructions:
JAL
JALR
BEQ
BNE
BLT
BGE
BLTU
BGEU
- Memory instructions:
LB
LH
LW
LBU
LHU
SB
SH
SW
- System instructions:
ECALL
EBREAK
FENCE
- Pseudo-instructions are not listed
Compressed instructions (C
extension):
- ALU instructions:
C.ADDI4SPN
C.ADDI
C.ADD
C.ADDI16SP
C.LI
C.LUI
C.SLLI
C.SRLI
C.SRAI
C.ANDI
C.SUB
C.XOR
C.OR
C.AND
C.MV
C.NOP
- Jump and branch instructions:
C.J
C.JAL
C.JR
C.JALR
C.BEQZ
C.BNEZ
- Memory instructions:
C.LW
C.SW
C.LWSP
C.SWSP
- System instructions:
C.EBREAK
(only withZicsr
extension) - Pseudo-instructions are not listed
Embedded CPU version (E
extension):
- Reduced register file (only the 16 lowest registers)
Integer multiplication and division hardware (M
extension):
- Multiplication instructions:
MUL
MULH
MULHSU
MULHU
- Division instructions:
DIV
DIVU
REM
REMU
- By default, the multiplier and divider cores use an iterative bit-serial processing scheme
- Multiplications can be mapped to DSPs via the
FAST_MUL_EN
generic to increase performance
Atomic memory access (A
extension):
- Supported instructions:
LR.W
(load-reservate)SC.W
(store-conditional)
Privileged architecture / CSR access (Zicsr
extension):
- Privilege levels:
M-mode
(Machine mode) - CSR access instructions:
CSRRW
CSRRS
CSRRC
CSRRWI
CSRRSI
CSRRCI
- System instructions:
MRET
WFI
- Pseudo-instructions are not listed
- Counter CSRs:
cycle
cycleh
instret
instreth
time
timeh
mcycle
mcycleh
minstret
minstreth
- Machine CSRs:
mstatus
mstatush
misa
(read-only!)mie
mtvec
mscratch
mepc
mcause
mtval
mip
mvendorid
marchid
mimpid
mhartid
mzext
(custom) - Supported exceptions and interrupts:
- Misaligned instruction address
- Instruction access fault (via unacknowledged bus access after timeout)
- Illegal instruction
- Breakpoint (via
ebreak
instruction) - Load address misaligned
- Load access fault (via unacknowledged bus access after timeout)
- Store address misaligned
- Store access fault (via unacknowledged bus access after timeout)
- Environment call from U-mode (via
ecall
instruction in user mode) - Environment call from M-mode (via
ecall
instruction in machine mode) - Machine timer interrupt
mti
(via processor's MTIME unit / external signal) - Machine software interrupt
msi
(via external signal) - Machine external interrupt
mei
(via external signal) - Four fast interrupt requests (custom extension)
Privileged architecture / User mode (U
extension, requires Zicsr
extension):
- Privilege levels:
M-mode
(Machine mode) +U-mode
(User mode)
Privileged architecture / instruction stream synchronization (Zifencei
extension):
- System instructions:
FENCE.I
Privileged architecture / Physical memory protection (PMP
, requires Zicsr
extension):
- Additional machine CSRs:
pmpcfg0
pmpcfg1
pmpaddr0
pmpaddr1
pmpaddr2
pmpaddr3
pmpaddr4
pmpaddr5
pmpaddr6
pmpaddr7
- CPU and Processor are BIG-ENDIAN, but this should be no problem as the external memory bus interface provides big- and little-endian configurations
misa
CSR is read-only - no dynamic enabling/disabling of synthesized CPU extensions during runtime; for compatibility: write accesses (in m-mode) are ignored and do not cause an exception- The physical memory protection (PMP) only supports
NAPOT
mode, a minimal granularity of 8 bytes and only up to 8 regions - The
A
extension only implementslr.w
andsc.w
instructions yet. However, these instructions are sufficient to emulate all further AMO operations - The
mcause
trap code0x80000000
(originally reserved in the RISC-V specs) is used to indicate a hardware reset (non-maskable reset).
The NEORV32-specific extensions are always enabled and are indicated via the X
bit in the misa
CSR.
- Four fast interrupt request channels with according control/status bits in
mie
andmip
and custom exception codes inmcause
mzext
CSR to check for implementedZ*
CPU extensions (likeZifencei
)- All undefined/umimplemented/malformed/illegal instructions do raise an illegal instruction exception
This chapter shows exemplary implementation results of the NEORV32 CPU for an Intel Cyclone IV EP4CE22F17C6N FPGA on
a DE0-nano board. The design was synthesized using Intel Quartus Prime Lite 20.1 ("balanced implementation"). The timing
information is derived from the Timing Analyzer / Slow 1200mV 0C Model. If not otherwise specified, the default configuration
of the CPU's generics is assumed (for example no PMP). No constraints were used at all. The u
and Zifencei
extensions have
a negligible impact on the hardware requirements.
Results generated for hardware version 1.4.9.0
.
CPU Configuration | LEs | FFs | Memory bits | DSPs | f_max |
---|---|---|---|---|---|
rv32i |
1190 | 512 | 2048 | 0 | 120 MHz |
rv32i + u + Zicsr + Zifencei |
1927 | 903 | 2048 | 0 | 123 MHz |
rv32im + u + Zicsr + Zifencei |
2471 | 1148 | 2048 | 0 | 120 MHz |
rv32imc + u + Zicsr + Zifencei |
2716 | 1165 | 2048 | 0 | 120 MHz |
rv32imac + u + Zicsr + Zifencei |
2736 | 1168 | 2048 | 0 | 122 MHz |
Setups with enabled "embedded CPU extension" E
show the same LUT and FF utilization and identical f_max. However, the size of the register file is cut in half.
Results generated for hardware version 1.4.9.0
.
Module | Description | LEs | FFs | Memory bits | DSPs |
---|---|---|---|---|---|
BOOT ROM | Bootloader ROM (default 4kB) | 3 | 1 | 32 768 | 0 |
BUSSWITCH | Mux for CPU I & D interfaces | 65 | 8 | 0 | 0 |
CFU0 | Custom functions unit 0 | - | - | - | - |
CFU1 | Custom functions unit 1 | - | - | - | - |
DMEM | Processor-internal data memory (default 8kB) | 6 | 2 | 65 536 | 0 |
GPIO | General purpose input/output ports | 67 | 65 | 0 | 0 |
IMEM | Processor-internal instruction memory (default 16kb) | 6 | 2 | 131 072 | 0 |
MTIME | Machine system timer | 274 | 166 | 0 | 0 |
PWM | Pulse-width modulation controller | 71 | 69 | 0 | 0 |
SPI | Serial peripheral interface | 138 | 124 | 0 | 0 |
SYSINFO | System configuration information memory | 11 | 10 | 0 | 0 |
TRNG | True random number generator | 132 | 105 | 0 | 0 |
TWI | Two-wire interface | 77 | 46 | 0 | 0 |
UART | Universal asynchronous receiver/transmitter | 176 | 132 | 0 | 0 |
WDT | Watchdog timer | 60 | 45 | 0 | 0 |
WISHBONE | External memory interface | 129 | 104 | 0 | 0 |
Exemplary processor implementation results for different FPGA platforms. The processor setup uses the default peripheral configuration (like no CFUs and no TRNG), no external memory interface and only internal instruction and data memories. IMEM uses 16kB and DMEM uses 8kB memory space. The setup's top entity connects most of the processor's top entity signals to FPGA pins - except for the Wishbone bus and the interrupt signals. The "default" strategy of each toolchain is used.
Results generated for hardware version 1.4.9.0
.
Vendor | FPGA | Board | Toolchain | CPU Configuration | LUT / LE | FF / REG | DSP | Memory Bits | BRAM / EBR | SPRAM | Frequency |
---|---|---|---|---|---|---|---|---|---|---|---|
Intel | Cyclone IV EP4CE22F17C6N |
Terasic DE0-Nano | Quartus Prime Lite 20.1 | rv32imc + u + Zicsr + Zifencei |
3813 (17%) | 1904 (8%) | 0 (0%) | 231424 (38%) | - | - | 119 MHz |
Lattice | iCE40 UltraPlus iCE40UP5K-SG48I |
Upduino v2.0 | Radiant 2.1 (Synplify Pro) | rv32ic + u + Zicsr + Zifencei |
4397 (83%) | 1679 (31%) | 0 (0%) | - | 12 (40%) | 4 (100%) | c 22.15 MHz |
Xilinx | Artix-7 XC7A35TICSG324-1L |
Arty A7-35T | Vivado 2019.2 | rv32imc + u + Zicsr + Zifencei + PMP |
2465 (12%) | 1912 (5%) | 0 (0%) | - | 8 (16%) | - | c 100 MHz |
Notes
- The Lattice iCE40 UltraPlus setup uses the FPGA's SPRAM memory primitives for the internal IMEM and DMEM (each 64kb).
The FPGA-specific memory components can be found in
rtl/fpga_specific
. - The clock frequencies marked with a "c" are constrained clocks. The remaining ones are f_max results from the place and route timing reports.
- The Upduino and the Arty board have on-board SPI flash memories for storing the FPGA configuration. These device can also be used by the default NEORV32 bootloader to store and automatically boot an application program after reset (both tested successfully).
- The setups with
PMP
implement 2 regions with a minimal granularity of 64kB.
The CoreMark CPU benchmark was executed on the NEORV32 and is available in the sw/example/coremark project folder. This benchmark tests the capabilities of a CPU itself rather than the functions provided by the whole system / SoC.
Results generated for hardware version 1.4.7.0
.
**Configuration**
Hardware: 32kB IMEM, 16kB DMEM, 100MHz clock
CoreMark: 2000 iterations, MEM_METHOD is MEM_STACK
Compiler: RISCV32-GCC 10.1.0 (rv32i toolchain)
Compiler flags: default, see makefile
Peripherals: UART for printing the results
CPU | Executable Size | Optimization | CoreMark Score | CoreMarks/MHz |
---|---|---|---|---|
rv32i |
27 424 bytes | -O3 |
35.71 | 0.3571 |
rv32im |
26 232 bytes | -O3 |
66.66 | 0.6666 |
rv32imc |
20 876 bytes | -O3 |
66.66 | 0.6666 |
rv32imc + FAST_MUL_EN |
20 876 bytes | -O3 |
83.33 | 0.8333 |
rv32imc + FAST_MUL_EN + FAST_SHIFT_EN |
20 876 bytes | -O3 |
86.96 | 0.8696 |
The FAST_MUL_EN
configuration uses DSPs for the multiplier of the M
extension (enabled via the FAST_MUL_EN
generic). The FAST_SHIFT_EN
configuration
uses a barrel shifter for CPU shift operations (enabled via the FAST_SHIFT_EN
generic).
When the C
extension is enabled, branches to an unaligned uncompressed instruction require additional instruction fetch cycles.
The NEORV32 CPU is based on a two-stages pipelined architecutre. Each stage uses a multi-cycle processing scheme. Hence, each instruction requires several clock cycles to execute (2 cycles for ALU operations, ..., 40 cycles for divisions). The average CPI (cycles per instruction) depends on the instruction mix of a specific applications and also on the available CPU extensions.
Please note that by default the CPU-internal shifter (e.g. for the SLL
instruction) as well as the multiplier and divider of the
M
extension use a bit-serial approach and require several cycles for completion.
The following table shows the performance results for successfully running 2000 CoreMark
iterations, which reflects a pretty good "real-life" work load. The average CPI is computed by
dividing the total number of required clock cycles (only the timed core to avoid distortion due to IO wait cycles; sampled via the cycle[h]
CSRs)
by the number of executed instructions (instret[h]
CSRs). The executables were generated using optimization -O3
.
Results generated for hardware version 1.4.7.0
.
CPU | Required Clock Cycles | Executed Instructions | Average CPI |
---|---|---|---|
rv32i |
5 648 997 774 | 1 469 233 238 | 3.84 |
rv32im |
3 036 749 774 | 601 871 338 | 5.05 |
rv32imc |
3 036 959 882 | 615 034 616 | 4.94 |
rv32imc + FAST_MUL_EN |
2 454 407 882 | 615 034 588 | 3.99 |
rv32imc + FAST_MUL_EN + FAST_SHIFT_EN |
2 320 308 322 | 615 034 676 | 3.77 |
The FAST_MUL_EN
configuration uses DSPs for the multiplier of the M
extension (enabled via the FAST_MUL_EN
generic). The FAST_SHIFT_EN
configuration
uses a barrel shifter for CPU shift operations (enabled via the FAST_SHIFT_EN
generic).
When the C
extension is enabled branches to an unaligned uncompressed instruction require additional instruction fetch cycles.
The top entity of the NEORV32 Processor (SoC) is rtl/core/neorv32_top.vhd
.
All signals of the top entity are of type std_ulogic or std_ulogic_vector, respectively
(except for the processor's TWI signals, which are of type std_logic). Leave all unused output ports unconnected (open
) and tie all unused
input ports to zero ('0'
or (others => '0')
, respectively).
Use the top's generics to configure the system according to your needs. Each generic is initilized with the default configuration. Detailed information regarding the interface signals and configuration generics can be found in the π NEORV32 data sheet (pdf).
If you do not want to use the NEORV32 processor setup, you can also use the CPU in stand-alone mode and build your own system around it.
The top entity of the stand-alone NEORV32 CPU is rtl/core/neorv32_cpu.vhd
.
Note that the CPU uses a proprietary interface for accessing data and instruction memory. More information can be found in the
π NEORV32 data sheet.
Alternative top entities, like the simplified "hello world" test setup or CPU/Processor
wrappers with resolved port signal types (i.e. std_logic), can be found in rtl/top_templates
.
Via the rtl/top_templates/neorv32_top_axi4lite.vhd
wrapper the NEORV32 provides an AXI4-Lite compatible master interface. This wrapper instantiates the default
NEORV32 processor top entitiy and implements a Wishbone to AXI4-Lite bridge.
The AXI4-Lite interface has been tested using Xilinx Vivado 19.2 block designer:
The processor was packed as custom IP using neorv32_top_axi4lite.vhd
as top entity. The AXI interface is automatically detected by the packager.
All remaining IO interfaces are available as custom signals. The configuration generics are available via the "customize IP" dialog.
In the figure above the resulting IP block is named "neorv32_top_axi4lite_v1_0".
(Note: Use Syntheiss option "global" when generating the block design to maintain the internal TWI tri-state drivers.)
The setup uses an AXI interconnect to attach two block RAMs to the processor. Since the processor in this example is configured without IMEM and DMEM,
the attached block RAMs are used for storing instructions and data: the first RAM is used as instruction memory
and is mapped to address 0x00000000 - 0x00003fff
(16kB), the second RAM is used as data memory and is mapped to address 0x80000000 - 0x80001fff
(8kB).
This overview is just a short excerpt from the Let's Get It Started section of the NEORV32 documentary:
At first you need the RISC-V GCC toolchain. You can either download the sources and build the toolchain by yourself, or you can download a prebuilt one and install it.
rv32imc
toolchain only provides library code compiled with compressed and
mul
/div
instructions! Hence, this code cannot be executed (without emulation) on an architecture without these extensions!
To build the toolchain by yourself, follow the official build instructions.
Make sure to use the ilp32
or ilp32e
ABI.
Alternatively, you can download a prebuilt toolchain. I have uploaded the toolchains I am using to GitHub. These toolchains were compiled on a 64-bit x86 Ubuntu 20.04 LTS (Ubuntu on Windows, actually). Download the toolchain of choice: github.com/stnolting/riscv_gcc_prebuilt
Get the sources of the NEORV32 Processor project. The simplest way is using git clone
(suggested for easy project updates via git pull
):
$ git clone https://github.com/stnolting/neorv32.git
Alternatively, you can either download a specific release or get the most recent version
of this project as *.zip
file.
Create a new project with your FPGA design tool of choice. Add all the *.vhd
files from the rtl/core
folder to this project. Make sure to add these files to a new design library called neorv32
.
You can either instantiate the processor's top entity or one of its wrappers in your own project. If you just want to try out the processor, you can use the simple test setup as top entity.
This test setup instantiates the processor and implements most of the peripherals and some ISA extensions. Only the UART lines, clock, reset and some GPIO output signals are propagated as actual entity signals. Basically, it is a FPGA "hello world" example:
entity neorv32_test_setup is
port (
-- Global control --
clk_i : in std_ulogic := '0'; -- global clock, rising edge
rstn_i : in std_ulogic := '0'; -- global reset, low-active, async
-- GPIO --
gpio_o : out std_ulogic_vector(7 downto 0); -- parallel output
-- UART --
uart_txd_o : out std_ulogic; -- UART send data
uart_rxd_i : in std_ulogic := '0' -- UART receive data
);
end neorv32_test_setup;
Make sure GNU Make
and a native GCC
compiler are installed. To test the installation of the RISC-V toolchain navigate to an example project like
sw/example/blink_led
and run:
neorv32/sw/example/blink_led$ make check
The NEORV32 project includes some example programs from
which you can start your own application. Simply compile one of these projects. This will create a NEORV32
executable neorv32_exe.bin
in the same folder:
neorv32/sw/example/blink_led$ make clean_all exe
You can upload a generated executable directly from the command line using the makefile's upload
target. Replace /dev/ttyUSB0
with
the according serial port.
sw/exeample/blink_example$ make COM_PORT=/dev/ttyUSB0` upload
A more "secure" way is to use a dedicated terminal program. This allows to directly interact with the bootloader console. Connect your FPGA board via UART to your computer and open the according port to interface with the NEORV32 bootloader. The bootloader uses the following default UART configuration:
- 19200 Baud
- 8 data bits
- 1 stop bit
- No parity bits
- No transmission / flow control protocol (raw bytes only)
- Newline on
\r\n
(carriage return & newline) - also for sent data
Use the bootloader console to upload the neorv32_exe.bin
executable and run your application image.
<< NEORV32 Bootloader >>
BLDV: Nov 7 2020
HWV: 0x01040606
CLK: 0x0134FD90 Hz
USER: 0x0001CE40
MISA: 0x42801104
PROC: 0x03FF0035
IMEM: 0x00010000 bytes @ 0x00000000
DMEM: 0x00010000 bytes @ 0x80000000
Autoboot in 8s. Press key to abort.
Aborted.
Available CMDs:
h: Help
r: Restart
u: Upload
s: Store to flash
l: Load from flash
e: Execute
CMD:> u
Awaiting neorv32_exe.bin... OK
CMD:> e
Booting...
Blinking LED demo program
Going further: Take a look at the Let's Get It Started! chapter of the π NEORV32 data sheet.
I'm always thankful for help! So if you have any questions, bug reports, ideas or if you want to give some kind of feedback, feel free to π‘ open a new issue, start a new β¨ discussion on GitHub or directly π§ drop me a line.
If you'd like to directly contribute to this repository:
- β this repository ;)
- Check out the project's code of conduct
- Fork this repository and clone the fork
- Create a feature branch in your fork:
git checkout -b awesome_new_feature_branch
- Create a new remote for the upstream repo:
git remote add upstream https://github.com/stnolting/neorv32
- Commit your modifications:
git commit -m "Awesome new feature!"
- Push to the branch:
git push origin awesome_new_feature_branch
- Create a new pull request
This project is released under the BSD 3-Clause license. No copyright infringement intended. Other implied or used projects might have different licensing - see their documentation to get more information.
If you are using the NEORV32 or some parts of the project in some kind of publication, please cite it as follows:
S. Nolting, "The NEORV32 Processor", github.com/stnolting/neorv32
Copyright (c) 2020, Stephan Nolting. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
- Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Our website contains links to the websites of third parties ("external links"). As the content of these websites is not under our control, we cannot assume any liability for such external content. In all cases, the provider of information of the linked websites is liable for the content and accuracy of the information provided. At the point in time when the links were placed, no infringements of the law were recognisable to us. As soon as an infringement of the law becomes known to us, we will immediately remove the link in question.
"Artix" and "Vivado" are trademarks of Xilinx Inc.
"Cyclone", "Quartus Prime Lite" and "Avalon Bus" are trademarks of Intel Corporation.
"iCE40", "UltraPlus" and "Radiant" are trademarks of Lattice Semiconductor Corporation.
"AXI", "AXI4" and "AXI4-Lite" are trademarks of Arm Holdings plc.
RISC-V - Instruction Sets Want To Be Free!
Continous integration provided by Travis CI and powered by GHDL.
This project is not affiliated with or endorsed by the Open Source Initiative (https://www.oshwa.org / https://opensource.org).
Made with β in Hannover, Germany πͺπΊ