Import work

This commit is contained in:
Nero 2021-01-29 00:44:26 +00:00
commit d1cc870337
3 changed files with 383 additions and 0 deletions

13
Makefile Normal file
View file

@ -0,0 +1,13 @@
NASM = nasm
QEMU = qemu-system-i386
default: mon8086.bs
%.bs: %.asm
$(NASM) -o $@ $<
qemu: mon8086.bs
$(QEMU) -hda mon8086.bs
clean:
rm *.bs