Files
riscv-linux-heap/run
Bryan McShea 63904ea09f initial commit
2022-10-11 17:54:20 -04:00

14 lines
203 B
Bash
Executable File

#!/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