mirror of
https://github.com/stnolting/neorv32.git
synced 2025-04-23 13:47:33 -04:00
minor edits
This commit is contained in:
parent
420fe525cb
commit
5a80bb9a99
3 changed files with 3 additions and 3 deletions
|
@ -74,7 +74,7 @@ by yourself, you can also download [pre-compiled toolchain](https://github.com/s
|
|||
|
||||

|
||||
|
||||
- RISC-V-compliant `rv32i/e` CPU (with optional `C`, `E`, `M` and `Zicsr` extensions)
|
||||
- RISC-V-compliant `rv32i` or `rv32e` CPU with optional `C`, `E`, `M` and `Zicsr` extensions
|
||||
- GCC-based toolchain ([pre-compiled rv32i and rv32 etoolchains available](https://github.com/stnolting/riscv_gcc_prebuilt))
|
||||
- Application compilation based on [GNU makefiles](https://github.com/stnolting/neorv32/blob/master/sw/example/blink_led/Makefile)
|
||||
- [Doxygen-based](https://github.com/stnolting/neorv32/blob/master/docs/doygen_makefile_sw) documentation of the software framework
|
||||
|
|
|
@ -197,7 +197,7 @@ package neorv32_application_image is
|
|||
00000186 => x"00000413",
|
||||
00000187 => x"0ff47513",
|
||||
00000188 => x"680000ef",
|
||||
00000189 => x"0fa00513",
|
||||
00000189 => x"0c800513",
|
||||
00000190 => x"6b0000ef",
|
||||
00000191 => x"00140413",
|
||||
00000192 => x"fedff06f",
|
||||
|
|
|
@ -84,7 +84,7 @@ int main() {
|
|||
|
||||
while (1) {
|
||||
neorv32_gpio_port_set(cnt & 0xFF); // mask for lowest 8 bit
|
||||
neorv32_cpu_delay_ms(250); // wait 0.25s using busy wait
|
||||
neorv32_cpu_delay_ms(200); // wait 0.2s using busy wait
|
||||
cnt++; // increment counter
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue