@ECHO OFF CLS REM Start qemu on windows. @ECHO OFF REM SDL_VIDEODRIVER=directx is faster than windib. But keyboard cannot work well. SET SDL_VIDEODRIVER=directx REM SDL_AUDIODRIVER=waveout or dsound can be used. Only if QEMU_AUDIO_DRV=sdl. SET SDL_AUDIODRIVER=dsound REM QEMU_AUDIO_DRV=dsound or fmod or sdl or none can be used. See qemu -audio-help. SET QEMU_AUDIO_DRV=dsound REM QEMU_AUDIO_LOG_TO_MONITOR=1 displays log messages in QEMU monitor. SET QEMU_AUDIO_LOG_TO_MONITOR=0 REM PCI-based PC(default): -M pc REM ISA-based PC : -M isapc REM -M isapc is added for NE2000 ISA card. REM qemu.exe -L . -m 128 -hda c.img -cdrom //./d: -soundhw sb16,adlib -localtime -M pc -full-screen REM qemu.exe -L . -m 128 -hda c.img -cdrom CD.iso -soundhw sb16,adlib -localtime -M pc -full-screen qemu.exe -L . -m 128 -hda c.img -cdrom peligrosa.iso -soundhw sb16,adlib -localtime -M pc -full-screen