Monitor program for IBM PC compatibles in 512B
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
.SUFFIXES: |
|
.SUFFIXES: .asm .bin |
|
|
|
all: anattos.bin |
|
|
|
.asm.bin: |
|
nasm -fbin -o $@ $< |
|
|
|
clean: |
|
rm -f *.bin |
|
|
|
run: anattos.bin |
|
qemu-system-i386 -fda $< |
|
|
|
.PHONY: all clean run
|
|
|