X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=Makefile;h=e07be2c18caf3850e366e88efb55c3a05e00766d;hb=5e74e5fec9f5fd943841e05ddc76c6bb93a4dcab;hp=014f1cad2d35c4e6db0b6a2c6c3ba34e1be7cffe;hpb=b8755ce740a1c9a75d44c9f5ac694b04defe15cd;p=bootcard diff --git a/Makefile b/Makefile index 014f1ca..e07be2c 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,7 @@ bin = bootcard.img +QEMU_FLAGS = -soundhw pcspk + $(bin): bootcard.asm nasm -f bin -o $@ $< @@ -9,11 +11,11 @@ clean: .PHONY: run run: $(bin) - qemu-system-i386 -hda $< + qemu-system-i386 -hda $< $(QEMU_FLAGS) .PHONY: debug debug: $(bin) - qemu-system-i386 -S -s -hda $< + qemu-system-i386 -S -s -hda $< $(QEMU_FLAGS) .PHONY: disasm disasm: $(bin)