initial commit

This commit is contained in:
Bryan McShea committed 2022-10-11 17:54:20 -04:00
commit 63904ea09f
14 files changed
+711

No files matched your search

Executable
+13
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