initial commit

This commit is contained in:
Bryan McShea
2022-10-11 17:54:20 -04:00
commit 63904ea09f
14 changed files with 711 additions and 0 deletions

13
run Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
make -s || exit
cd build
if [ "$1" = "d" ]; then
qemu-riscv64 -g 1234 main &
riscv64-linux-gnu-gdb -q \
-ex "target remote :1234" \
main
else
qemu-riscv64 main
fi