Klondike Solitaire (MSXdev'21)
The classic solitaire card game now available for the MSX.
The goal of the game is to sort the cards into order.
Left button to select a card to move, then press again to move the card.
Right button to move the pointer to bottom of the pile, then press again to move the deck.
Right click also automatically moves a card to the foundation, if a valid move.
Hold both left and right buttons together to resign the current game.
mkdir -p package/
unzip klondike.zip
mv "MSXdev21_KlondikeSolitaire_v1.0.rom" package/KLONDIKE.ROM
mv "MSXdev21_KlondikeSolitaire_v1.0.txt" package/README.TXT
cat > package/KLONDIKE.BAT << EOF
REM Look for SROM.COM in default dir
IFF EXIST %_DISK%:\SOFAROM\SROM.COM
%_DISK%:\SOFAROM\SROM.COM KLONDIKE.ROM
ELSE
REM Try to run it from path
IFF EXIST SROM.COM
SROM.COM KLONDIKE.ROM
ELSE
echo "SROM.COM not found. Install it with: 'HUB install SOFAROM'"
exit 1
ENDIFF
ENDIFF
EOF
unix2dos package/KLONDIKE.BAT
unix2dos package/README.TXT
hub install KLONDIKE