Rallyman Scoring Program for HP 41CX (or 41C/CV with Extended Functions) This program allows tracking elapsed "time" while playing the board game Rallyman. Note that you must still draw gear cards to work through the decks, as this changes the possible outcomes of loss of control, but you won't have to worry about calculating your time at the end of the game. The program also tracks total Time Attack savings, and allows spending that savings to drive cautiously, as described in the rulebook. Current elapsed time is displayed on the left, and current Time Attack savings is displayed on the right. The program enables the USER keyboard, and defines the following keys: A - Tally a gear card C - Display total time less Time Attack savings, for calculating end-game score E - Add savings from Time Attack e (Shift E) - Use (deplete) savings from Time Attack J - Redisplay the scoreboard Usage Examples: To start the program and clear the scoreboard: XEQ RALLY Tally the gear card that was drawn (e.g. 4): 4 A Add seconds to Time Attack savings (e.g. 5 dice): 5 E Spend Time Attack savings when driving cautiously (e.g. 1 die): 1 Shift E View total time at end of game: C Program Listing: LBL "RALLY" 0 STO 00 STO 01 SF 27 LBL J RCLFLAG FIX 0 CF 28 CF 29 CLA RCL 00 XEQ 00 |-" -" RCL 01 XEQ 00 STOFLAG CLX AVIEW STOP GTO J LBL A 10 * CHS 60 + ST+ 00 GTO J LBL e CHS LBL E ST+ 01 GTO J LBL C RCL 00 RCL 01 + XEQ 00 STOP GTO J LBL 00 ENTER^ ENTER^ 60 / INT XEQ 01 |-":" RDN 60 MOD XEQ 01 RDN RTN LBL 01 10 X>Y? |-"0" RDN ARCL X RTN END