9 lines
110 B
Makefile
9 lines
110 B
Makefile
|
all: build
|
||
|
|
||
|
build:
|
||
|
nasm main.asm -f bin -o main.img
|
||
|
|
||
|
run:
|
||
|
qemu-system-i386 -fda main.img
|
||
|
|
||
|
debug: build run
|