RVBTCC/run.sh

7 lines
170 B
Bash
Raw Normal View History

2024-12-23 14:42:31 +00:00
gcc boot.c -o boot.elf &&
./boot.elf < $1 > $1.s &&
riscv64-linux-gnu-gcc-12 -static $1.s -o $1.elf &&
qemu-riscv64 $1.elf
2024-12-07 06:13:34 +00:00
echo $?
2024-12-24 07:00:51 +00:00
rm $1.s $1.elf boot.elf 2> /dev/null