You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
default:
|
|
rm -rf hello
|
|
riscv64-linux-gnu-as hello.s -o hello.o
|
|
riscv64-linux-gnu-gcc -o hello hello.o -nostdlib -static
|
|
|
|
run:
|
|
qemu-system-riscv64 -machine virt -nographic -kernel ./hello -bios none
|