added a makefile
This commit is contained in:
parent
e30b45b5c4
commit
696f749c10
1 changed files with 9 additions and 0 deletions
9
Makefile
Normal file
9
Makefile
Normal 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
|
Reference in a new issue