TI-58/59 Jive Turkey Number Guessing Game

Back to main page
I've had a lot of visitors but few comments! Let me hear from you! Email me at: Gene!


This program and it's SR-52 twin first appeared in the PPX Exchange near Thanksgiving 1978 and is probably still copyrighted by them (if they care anymore). The game resembles the classic game of High-Low, but only up to a point. The program sometimes "Jives" you or lies to you in its responses.
Instructions: To play the game, you try to guess a number that the program has generated. It then tells you whether your guess is too high or too low or correct. However, at the beginning of the game, you have to enter a probability of "truth", a number between 0 and 100. This entry determines how often the program "jives" you. For example, if you enter 75, the program gives you truthful answers 75% of the time and false answers 25% of the time.

1) Press SBR CLR to initalize the program.
2) Enter the probability of truth and press A.
3) Enter a seed number as an integer between 0 and 199017 and press B.
4) Enter your guess (0 to 100) and press E.
5) If your guess is too high, the program displays 1.
6) If your guess is too low, the program displays -1.
7) If your guess is correct, the display flashes the correct answer.
8) Press D to show how many guesses you used. Press CE first if the display is still flashing.
9) To play another game, go to step 1.


Example:
Enter    Press    Display     Comments
        SBR CLR     0.        Initialize
80         A       80.        The probability of truth
956        B        0.        Seed entered
50         E        1.        High
25         E        1.        High
15         E       -1.        Low
20         E        1.        High
17         E       -1.        Low
18         E       -1.        Low
19         E        1.        High?
19         E       -1.        Low
19         E       -1.        Low
22         E       22.        Correct! Flashing Display
         CE D      10.        Number of guesses
Program Listing. Most instructions are self-explanatory.
Line  Keycode  Instruction
00      76       LBL
01      11       A
02      42       STO
03      04       04
04      99       PRT
05      92       RTN
06      76       LBL
07      12       B
08      42       STO
09      09       09
10      99       PRT
11      53       (
12      71       SBR
13      88       DMS
14      65       *
15      01       1
16      00       0
17      00       0
18      54       )
19      59       INT
20      42       STO
21      01       01
22      00       0
23      92       RTN
24      76       LBL
25      25       CLR
26      58       FIX
27      09       09
28      00       0
29      42       STO
30      05       05
31      92       RTN
32      76       LBL
33      15       E
34      22       INV
35      86       STF
36      01       01
37      42       STO
38      02       02
39      99       PRT
40      69       OP
41      25       25
42      71       SBR
43      88       DMS
44      53       (
45      24       CE
46      65       *
47      01       1
48      00       0
49      00       0
50      54       )
51      59       INT
52      42       STO
53      03       03
54      32       X <> T
55      43       RCL
56      04       04
57      22       INV
58      77       GE
59      42       STO
60      86       STF
61      01       01
62      76       LBL 
63      42       STO
64      43       RCL
65      02       02
66      32       X <> T
67      43       RCL 
68      01       01
69      67       EQ
70      39       COS
71      22       INV
72      77       GE
73      30       TAN
74      87       IFF
75      01       01
76      34       SQRT
77      76       LBL
78      33       X^2
79      01       1
80      99       PRT
81      98       ADV
82      92       RTN
83      76       LBL
84      30       TAN
85      87       IFF
86      01       01
87      33       X^2
88      76       LBL
89      34       SQRT
90      01       1
91      94       +/-
92      99       PRT
93      98       ADV
94      92       RTN
95      76       LBL
96      39       COS
97      43       RCL
98      02       02
99      94       +/-
100     34       SQRT
101     33       X^2
102     99       PRT
103     98       ADV
104     92       RTN
105     76       LBL
106     13       C
107     71       SBR
108     88       DMS
109     99       PRT
110     92       RTN
111     76       LBL
112     14       D
113     43       RCL
114     05       05
115     99       PRT
116     92       RTN
117     76       LBL
118     88       DMS
119     58       FIX
120     09       09
121     53       (
122     53       (
123     02       2
124     04       4
125     02       2
126     09       9
127     08       8
128     65       *
129     43       RCL
130     09       09
131     85       +
132     09       9
133     09       9
134     09       9
135     09       9
136     01       1
137     54       )
138     55       /
139     01       1
140     09       9
141     09       9
142     00       0
143     01       1
144     07       7
145     42       STO
146     10       10
147     54       )
148     53       (
149     53       (
150     22       INV
151     59       INT
152     65       *
153     43       RCL
154     10       10
155     54       )
156     42       STO
157     09       09
158     55       /
159     43       RCL
160     10       10
161     54       )
162     92       RTN

Visitors since 6/13/97