all: build	

build:
	nasm main.asm -f bin -o main.img
	
run:
	qemu-system-i386 -fda main.img

debug: build run