From c469c3174bb2cddbba8a7395f017ddecf4d89e91 Mon Sep 17 00:00:00 2001 From: Busted Wing Date: Mon, 5 Feb 2024 07:08:52 -0500 Subject: [PATCH] Update README.md to add blinky to pre-built test software examples --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index e8e562b..a639929 100644 --- a/README.md +++ b/README.md @@ -122,6 +122,12 @@ For a more advanced example, we can also run the Dining philosophers demo fusesoc run --target=verilator_tb servant --uart_baudrate=57600 --firmware=$SERV/sw/zephyr_sync.hex --memsize=16384 +...or... the blinky example (note that the ```uart_baudrate``` should not be defined for the blinky test) + + fusesoc run --target=verilator_tb servant --firmware=$SERV/sw/blinky.hex --memsize=16384 + + + If the [toolchain](https://github.com/riscv-collab/riscv-gnu-toolchain) is installed, other applications can be tested by compiling the assembly prgram and converting to bin and then hex with makehex.py found in [`$SERV/sw`](/sw/). :bulb:RISC-V Compressed Extension can be enabled by passing `--compressed=1` parameter.