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.
15 lines
399 B
Makefile
15 lines
399 B
Makefile
default: hello
|
|
|
|
hello: hello.o baremetal.ld
|
|
riscv64-unknown-elf-gcc -T baremetal.ld -march=rv32i -mabi=ilp32 -nostdlib -static -o hello hello.o
|
|
|
|
hello.o: hello.s
|
|
riscv64-unknown-elf-as -march=rv32i -mabi=ilp32 hello.s -o hello.o
|
|
|
|
run: hello
|
|
@echo "Ctrl-A C for QEMU console, then quit to exit"
|
|
qemu-system-riscv32 -nographic -serial mon:stdio -machine virt -bios hello
|
|
|
|
clean:
|
|
rm hello hello.o
|