Simple Startup

This commit is contained in:
2026-04-07 15:12:48 +02:00
commit 86cfe54faa
7 changed files with 75 additions and 0 deletions

7
justfile Normal file
View File

@@ -0,0 +1,7 @@
default:
just --list
run:
riscv64-linux-gnu-as -o hello.o hello.s
riscv64-linux-gnu-ld -o hello hello.o
qemu-riscv64 ./hello