ros/Makefile
2024-03-07 23:49:36 +13:00

9 lines
234 B
Makefile

FLOPPY = ros.img
SRC_FILES = $(cd src && shell find -L * -type f -name '*.asm')
$(FLOPPY): Makefile $(SRC_FILES)
nasm stage1.asm -o $(FLOPPY)
run: $(FLOPPY)
qemu-system-i386 -fda $(FLOPPY) -boot a -enable-kvm -cpu host -m 512M