diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ca5ca9a --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +all: build + +build: + nasm main.asm -f bin -o main.img + +run: + qemu-system-i386 -fda main.img + +debug: build run \ No newline at end of file