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.
8 lines
201 B
Makefile
8 lines
201 B
Makefile
5 months ago
|
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
|