e9948ee0ea
This reverts commit c95543ca30dfc0c8b3a9dcf59f605ac280b64025.
12 lines
126 B
Makefile
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
|