Import work
This commit is contained in:
commit
d1cc870337
3 changed files with 383 additions and 0 deletions
13
Makefile
Normal file
13
Makefile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue