mirror of
https://github.com/stnolting/neorv32.git
synced 2025-04-24 06:07:52 -04:00
minor typo fixes
This commit is contained in:
parent
d7cfe8db95
commit
c3cab832b2
2 changed files with 11 additions and 10 deletions
19
README.md
19
README.md
|
@ -160,7 +160,8 @@ cache ([iCACHE](https://stnolting.github.io/neorv32/#_processor_internal_instruc
|
|||
|
||||
**Advanced**
|
||||
|
||||
* _true random_ number generator ([TRNG](https://stnolting.github.io/neorv32/#_true_random_number_generator_trng))
|
||||
* _true random_ number generator ([TRNG](https://stnolting.github.io/neorv32/#_true_random_number_generator_trng)) based
|
||||
on the [neoTRNG](https://github.com/stnolting/neoTRNG)
|
||||
* execute in place module ([XIP](https://stnolting.github.io/neorv32/#_execute_in_place_module_xip)) to directly execute code from SPI flash
|
||||
* custom functions subsystem ([CFS](https://stnolting.github.io/neorv32/#_custom_functions_subsystem_cfs))
|
||||
for tightly-coupled custom accelerators and interfaces
|
||||
|
@ -260,19 +261,19 @@ This overview provides some *quick links* to the most important sections of the
|
|||
|
||||
### :electric_plug: Hardware Overview
|
||||
|
||||
* [:interrobang: Rationale](https://stnolting.github.io/neorv32/#_rationale) - NEORV32: why? how come? what for?
|
||||
* [:interrobang: Rationale](https://stnolting.github.io/neorv32/#_rationale) - NEORV32: Why? How come? What for?
|
||||
|
||||
* **[NEORV32 Processor](https://stnolting.github.io/neorv32/#_neorv32_processor_soc) - the SoC**
|
||||
* [Top Entity - Signals](https://stnolting.github.io/neorv32/#_processor_top_entity_signals) - how to connect to the processor
|
||||
* [Top Entity - Generics](https://stnolting.github.io/neorv32/#_processor_top_entity_generics) - configuration options
|
||||
* [Address Space](https://stnolting.github.io/neorv32/#_address_space) - memory layout and boot configuration
|
||||
* [SoC Modules](https://stnolting.github.io/neorv32/#_processor_internal_modules) - available peripheral modules and memories
|
||||
* [Address Space](https://stnolting.github.io/neorv32/#_address_space) - memory layout and boot configurations
|
||||
* [SoC Modules](https://stnolting.github.io/neorv32/#_processor_internal_modules) - peripheral modules and memories
|
||||
* [On-Chip Debugger](https://stnolting.github.io/neorv32/#_on_chip_debugger_ocd) - online & in-system debugging of the processor via JTAG
|
||||
|
||||
* **[NEORV32 CPU](https://stnolting.github.io/neorv32/#_neorv32_central_processing_unit_cpu) - the CPU**
|
||||
* [RISC-V compatibility](https://stnolting.github.io/neorv32/#_risc_v_compatibility) - what is compatible to the specs. and what is not
|
||||
* [Full Virtualization](https://stnolting.github.io/neorv32/#_full_virtualization) - hardware execution safety
|
||||
* [ISA and Extensions](https://stnolting.github.io/neorv32/#_instruction_sets_and_extensions) - available RISC-V ISA extensions
|
||||
* [ISA and Extensions](https://stnolting.github.io/neorv32/#_instruction_sets_and_extensions) - available (RISC-V) ISA extensions
|
||||
* [CSRs](https://stnolting.github.io/neorv32/#_control_and_status_registers_csrs) - control and status registers
|
||||
* [Traps](https://stnolting.github.io/neorv32/#_traps_exceptions_and_interrupts) - interrupts and exceptions
|
||||
|
||||
|
@ -281,15 +282,15 @@ This overview provides some *quick links* to the most important sections of the
|
|||
* [Example Programs](https://github.com/stnolting/neorv32/tree/main/sw/example) - test program execution on your setup
|
||||
* [Core Libraries](https://stnolting.github.io/neorv32/#_core_libraries) - high-level functions for accessing the processor's peripherals
|
||||
* [Software Framework Documentation](https://stnolting.github.io/neorv32/sw/files.html) - _doxygen_-based documentation
|
||||
* [Application Makefiles](https://stnolting.github.io/neorv32/#_application_makefile) - turning your application into an executable
|
||||
* [Application Makefiles](https://stnolting.github.io/neorv32/#_application_makefile) - turning _your_ application into an executable
|
||||
* [Bootloader](https://stnolting.github.io/neorv32/#_bootloader) - the build-in NEORV32 bootloader
|
||||
|
||||
### :rocket: User Guide
|
||||
|
||||
* [Toolchain Setup](https://stnolting.github.io/neorv32/ug/#_software_toolchain_setup) - install and setup RISC-V gcc
|
||||
* [Toolchain Setup](https://stnolting.github.io/neorv32/ug/#_software_toolchain_setup) - install and setup the RISC-V GCC toolchain
|
||||
* [General Hardware Setup](https://stnolting.github.io/neorv32/ug/#_general_hardware_setup) - setup a new NEORV32 EDA project
|
||||
* [General Software Setup](https://stnolting.github.io/neorv32/ug/#_general_software_framework_setup) - configure the software framework
|
||||
* [Application Compilation](https://stnolting.github.io/neorv32/ug/#_application_program_compilation) - compile an application using "make"
|
||||
* [Application Compilation](https://stnolting.github.io/neorv32/ug/#_application_program_compilation) - compile an application using _make_
|
||||
* [Upload via Bootloader](https://stnolting.github.io/neorv32/ug/#_uploading_and_starting_of_a_binary_executable_image_via_uart) - upload and execute executables
|
||||
* [Application-Specific Processor Configuration](https://stnolting.github.io/neorv32/ug/#_application_specific_processor_configuration) - tailor the processor to your needs
|
||||
* [Adding Custom Hardware Modules](https://stnolting.github.io/neorv32/ug/#_adding_custom_hardware_modules) - add _your_ custom hardware
|
||||
|
@ -307,7 +308,7 @@ This overview provides some *quick links* to the most important sections of the
|
|||
|
||||
This is an open-source project that is free of charge. Use this project in any way you like
|
||||
(as long as it complies to the permissive [license](https://github.com/stnolting/neorv32/blob/main/LICENSE)).
|
||||
Please quote it appropriately. :+1:
|
||||
Please cite it appropriately. :+1:
|
||||
|
||||
[[back to top](#The-NEORV32-RISC-V-Processor)]
|
||||
|
||||
|
|
|
@ -86,7 +86,7 @@ infringement of the law becomes known to us, we will immediately remove the link
|
|||
|
||||
[NOTE]
|
||||
This is an open-source project that is free of charge. Use this project in any way you like
|
||||
(as long as it complies to the permissive license). Please quote it appropriately. 👍
|
||||
(as long as it complies to the permissive license). Please cite it appropriately. 👍
|
||||
|
||||
.Contributors ❤️
|
||||
[NOTE]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue