Files
2021-03-08 09:30:07 +08:00

12 lines
126 B
Makefile

all:
nasm helloos.asm -o helloos.bin
clean:
rm -rf helloos.bin
qemu: all
qemu-system-i386 -fda helloos.bin
.PHONY:
all