xv6-aarch64-zig/Makefile

12 lines
149 B
Makefile
Raw Normal View History

2023-12-06 05:56:23 +00:00
ifndef CPUS
CPUS := 3
endif
qemu:
qemu-system-aarch64 \
-machine virt \
-kernel zig-out/bin/kernel \
-m 128M \
-smp $(CPUS) \
-nographic