#!/bin/bash
TYPE="full"
if [ "$1" != "" ]; then
  TYPE=$1
	FLOP2="-flop2 ../../disks/qt$1.dsk"
else
	FLOP2="-flop2 ../../disks/qt100.dsk"
fi

make clean all DEBUG_FLOPPY=$TYPE && mame apple2cp -window -flop1 quicktake.po $FLOP2 -resolution 560x384 -printer null_modem -bitb socket.localhost:2001 -modem null_modem -bitb2 socket.localhost:2000 -nomouse -debug
