XROAR (Windows) batch files

Hardware Hacking, Programming and Game Solutions/Cheats
Post Reply
zephyr
Posts: 1474
Joined: Mon Jul 21, 2008 1:18 am

XROAR (Windows) batch files

Post by zephyr »

If you add "start" to your XROAR (Windows) batch files, the command prompt window will not remain open when XROAR is running. The examples below show some common configurations for Dragon 32 and 64 emulation with start added before the XROAR command line.

Dragon 32 with 6809e CPU (default), and Steve Woolham's Enhanced BASIC ROM v3.1

Code: Select all

@echo off
start xroar -vo sdl -machine dragon32 -extbas d32V31.rom -nodos -kbd-translate -force-crc-match
Dragon 32 with 6809e CPU (default), Steve Woolham's Enhanced BASIC ROM v3.1, and DragonDOS 1.1c

Code: Select all

@echo off
start xroar -vo sdl -machine dragon32 -extbas d32V31.rom -machine-cart dragondos -cart-rom ddos11c.rom -kbd-translate -force-crc-match
Dragon 64 with 6309e CPU, and Steve Woolham's Enhanced BASIC ROMs v3.1

Code: Select all

@echo off
start xroar -vo sdl -machine dragon64 -machine-cpu 6309 -extbas d64rom1V31.rom -altbas d64rom2V31.rom -nodos -kbd-translate -force-crc-match
Dragon 64 with 6309e CPU, Steve Woolham's Enhanced BASIC ROMs v3.1, and DragonDOS 1.1c

Code: Select all

@echo off
start xroar -vo sdl -machine dragon64 -machine-cpu 6309 -extbas d64rom1V31.rom -altbas d64rom2V31.rom -machine-cart dragondos -cart-rom ddos11c.rom -kbd-translate -force-crc-match
Post Reply