xv6-aarch64-zig/Makefile
2023-12-05 23:56:23 -06:00

11 lines
149 B
Makefile

ifndef CPUS
CPUS := 3
endif
qemu:
qemu-system-aarch64 \
-machine virt \
-kernel zig-out/bin/kernel \
-m 128M \
-smp $(CPUS) \
-nographic