From 696f749c10c12c25d078aaad3271af00b81c14b7 Mon Sep 17 00:00:00 2001 From: Patrick_Pluto Date: Sat, 28 Sep 2024 22:16:46 +0200 Subject: [PATCH] added a makefile --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile 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