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