minor edits

This commit is contained in:
stnolting 2020-06-23 17:55:38 +02:00
parent 420fe525cb
commit 5a80bb9a99
3 changed files with 3 additions and 3 deletions

View file

@ -74,7 +74,7 @@ by yourself, you can also download [pre-compiled toolchain](https://github.com/s
![neorv32 Overview](https://raw.githubusercontent.com/stnolting/neorv32/master/docs/figures/neorv32_overview.png)
- 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

View file

@ -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",

View file

@ -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
}