added a makefile

This commit is contained in:
Patrick 2024-09-28 22:16:46 +02:00
parent e30b45b5c4
commit 696f749c10

9
Makefile Normal file
View file

@ -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