###accnt.tst
101     300.00
102     301.50
103     418.66
###arith.tst
3 2 -8 2
3.00000 2.50000 -8.00000
###asst.tst
###asst2.tst
c: dec=65 oct=101 hex=41 ASCII=A
i: dec=65 oct=101 hex=41 unsigned=65
c: dec=88 oct=130 hex=58 ASCII=X
i: dec=-4 oct=177774 hex=fffc unsigned=65532
###badpow.tst
2 to the power 0 equals 1
2 to the power 1 equals 1
2 to the power 2 equals 1
2 to the power 3 equals 1
2 to the power 4 equals 1
2 to the power 5 equals 1
2 to the power 6 equals 1
2 to the power 7 equals 1
2 to the power 8 equals 1
2 to the power 9 equals 1
###bdrill.tst

    a = 0000000000010101
    b = 0000000000011001
a + b = 0000000000101110
a & b = 0000000000010001
a | b = 0000000000011101
a ^ b = 0000000000001100
###blast.tst
10
9
8
7
6
5
4
3
2
1
0
Blast off!
###blast2.tst
10
9
8
7
6
5
4
3
We have ignition!
2
1
0
Blast off!
###cap.tst
Abc Xyz
123 Q W E
###cap2.tst
Abc Xyz
123 Q W E
###codes1.tst
  0 0x00 0000
  1 0x01 0001
  2 0x02 0002
  3 0x03 0003
  4 0x04 0004
  5 0x05 0005
  6 0x06 0006
  7 0x07 0007
  8 0x08 0010
  9 0x09 0011
 10 0x0a 0012
 11 0x0b 0013
 12 0x0c 0014
 13 0x0d 0015
 14 0x0e 0016
 15 0x0f 0017
 16 0x10 0020
 17 0x11 0021
 18 0x12 0022
 19 0x13 0023
 20 0x14 0024
 21 0x15 0025
 22 0x16 0026
 23 0x17 0027
 24 0x18 0030
 25 0x19 0031
 26 0x1a 0032
 27 0x1b 0033
 28 0x1c 0034
 29 0x1d 0035
 30 0x1e 0036
 31 0x1f 0037
 32 0x20 0040 ' '
 33 0x21 0041 '!'
 34 0x22 0042 '"'
 35 0x23 0043 '#'
 36 0x24 0044 '$'
 37 0x25 0045 '%'
 38 0x26 0046 '&'
 39 0x27 0047 '''
 40 0x28 0050 '('
 41 0x29 0051 ')'
 42 0x2a 0052 '*'
 43 0x2b 0053 '+'
 44 0x2c 0054 ','
 45 0x2d 0055 '-'
 46 0x2e 0056 '.'
 47 0x2f 0057 '/'
 48 0x30 0060 '0' digit
 49 0x31 0061 '1' digit
 50 0x32 0062 '2' digit
 51 0x33 0063 '3' digit
 52 0x34 0064 '4' digit
 53 0x35 0065 '5' digit
 54 0x36 0066 '6' digit
 55 0x37 0067 '7' digit
 56 0x38 0070 '8' digit
 57 0x39 0071 '9' digit
 58 0x3a 0072 ':'
 59 0x3b 0073 ';'
 60 0x3c 0074 '<'
 61 0x3d 0075 '='
 62 0x3e 0076 '>'
 63 0x3f 0077 '?'
 64 0x40 0100 '@'
 65 0x41 0101 'A' uppercase
 66 0x42 0102 'B' uppercase
 67 0x43 0103 'C' uppercase
 68 0x44 0104 'D' uppercase
 69 0x45 0105 'E' uppercase
 70 0x46 0106 'F' uppercase
 71 0x47 0107 'G' uppercase
 72 0x48 0110 'H' uppercase
 73 0x49 0111 'I' uppercase
 74 0x4a 0112 'J' uppercase
 75 0x4b 0113 'K' uppercase
 76 0x4c 0114 'L' uppercase
 77 0x4d 0115 'M' uppercase
 78 0x4e 0116 'N' uppercase
 79 0x4f 0117 'O' uppercase
 80 0x50 0120 'P' uppercase
 81 0x51 0121 'Q' uppercase
 82 0x52 0122 'R' uppercase
 83 0x53 0123 'S' uppercase
 84 0x54 0124 'T' uppercase
 85 0x55 0125 'U' uppercase
 86 0x56 0126 'V' uppercase
 87 0x57 0127 'W' uppercase
 88 0x58 0130 'X' uppercase
 89 0x59 0131 'Y' uppercase
 90 0x5a 0132 'Z' uppercase
 91 0x5b 0133 '['
 92 0x5c 0134 '\'
 93 0x5d 0135 ']'
 94 0x5e 0136 '^'
 95 0x5f 0137 '_'
 96 0x60 0140 '`'
 97 0x61 0141 'a' lowercase
 98 0x62 0142 'b' lowercase
 99 0x63 0143 'c' lowercase
100 0x64 0144 'd' lowercase
101 0x65 0145 'e' lowercase
102 0x66 0146 'f' lowercase
103 0x67 0147 'g' lowercase
104 0x68 0150 'h' lowercase
105 0x69 0151 'i' lowercase
106 0x6a 0152 'j' lowercase
107 0x6b 0153 'k' lowercase
108 0x6c 0154 'l' lowercase
109 0x6d 0155 'm' lowercase
110 0x6e 0156 'n' lowercase
111 0x6f 0157 'o' lowercase
112 0x70 0160 'p' lowercase
113 0x71 0161 'q' lowercase
114 0x72 0162 'r' lowercase
115 0x73 0163 's' lowercase
116 0x74 0164 't' lowercase
117 0x75 0165 'u' lowercase
118 0x76 0166 'v' lowercase
119 0x77 0167 'w' lowercase
120 0x78 0170 'x' lowercase
121 0x79 0171 'y' lowercase
122 0x7a 0172 'z' lowercase
123 0x7b 0173 '{'
124 0x7c 0174 '|'
125 0x7d 0175 '}'
126 0x7e 0176 '~'
127 0x7f 0177
###codes2.tst
 49 0x31 0061 '1' digit
 97 0x61 0141 'a' lowercase
 65 0x41 0101 'A' uppercase
 33 0x21 0041 '!'
 10 0x0a 0012
###codes3.tst
 49 0x31 0061 '1' digit
 97 0x61 0141 'a' lowercase
 65 0x41 0101 'A' uppercase
 33 0x21 0041 '!'
 10 0x0a 0012
###codes4.tst
  0 0x00 0000 C
  1 0x01 0001 C
  2 0x02 0002 C
  3 0x03 0003 C
  4 0x04 0004 C
  5 0x05 0005 C
  6 0x06 0006 C
  7 0x07 0007 C
  8 0x08 0010 C
  9 0x09 0011 S C
 10 0x0a 0012 S C
 11 0x0b 0013 C
 12 0x0c 0014 S C
 13 0x0d 0015 S C
 14 0x0e 0016 C
 15 0x0f 0017 C
 16 0x10 0020 C
 17 0x11 0021 C
 18 0x12 0022 C
 19 0x13 0023 C
 20 0x14 0024 C
 21 0x15 0025 C
 22 0x16 0026 C
 23 0x17 0027 C
 24 0x18 0030 C
 25 0x19 0031 C
 26 0x1a 0032 C
 27 0x1b 0033 C
 28 0x1c 0034 C
 29 0x1d 0035 C
 30 0x1e 0036 C
 31 0x1f 0037 C
 32 0x20 0040 ' ' S P
 33 0x21 0041 '!' P
 34 0x22 0042 '"' P
 35 0x23 0043 '#' P
 36 0x24 0044 '$' P
 37 0x25 0045 '%' P
 38 0x26 0046 '&' P
 39 0x27 0047 ''' P
 40 0x28 0050 '(' P
 41 0x29 0051 ')' P
 42 0x2a 0052 '*' P
 43 0x2b 0053 '+' P
 44 0x2c 0054 ',' P
 45 0x2d 0055 '-' P
 46 0x2e 0056 '.' P
 47 0x2f 0057 '/' P
 48 0x30 0060 '0' D AN
 49 0x31 0061 '1' D AN
 50 0x32 0062 '2' D AN
 51 0x33 0063 '3' D AN
 52 0x34 0064 '4' D AN
 53 0x35 0065 '5' D AN
 54 0x36 0066 '6' D AN
 55 0x37 0067 '7' D AN
 56 0x38 0070 '8' D AN
 57 0x39 0071 '9' D AN
 58 0x3a 0072 ':' P
 59 0x3b 0073 ';' P
 60 0x3c 0074 '<' P
 61 0x3d 0075 '=' P
 62 0x3e 0076 '>' P
 63 0x3f 0077 '?' P
 64 0x40 0100 '@' P
 65 0x41 0101 'A' UC L AN
 66 0x42 0102 'B' UC L AN
 67 0x43 0103 'C' UC L AN
 68 0x44 0104 'D' UC L AN
 69 0x45 0105 'E' UC L AN
 70 0x46 0106 'F' UC L AN
 71 0x47 0107 'G' UC L AN
 72 0x48 0110 'H' UC L AN
 73 0x49 0111 'I' UC L AN
 74 0x4a 0112 'J' UC L AN
 75 0x4b 0113 'K' UC L AN
 76 0x4c 0114 'L' UC L AN
 77 0x4d 0115 'M' UC L AN
 78 0x4e 0116 'N' UC L AN
 79 0x4f 0117 'O' UC L AN
 80 0x50 0120 'P' UC L AN
 81 0x51 0121 'Q' UC L AN
 82 0x52 0122 'R' UC L AN
 83 0x53 0123 'S' UC L AN
 84 0x54 0124 'T' UC L AN
 85 0x55 0125 'U' UC L AN
 86 0x56 0126 'V' UC L AN
 87 0x57 0127 'W' UC L AN
 88 0x58 0130 'X' UC L AN
 89 0x59 0131 'Y' UC L AN
 90 0x5a 0132 'Z' UC L AN
 91 0x5b 0133 '[' P
 92 0x5c 0134 '\' P
 93 0x5d 0135 ']' P
 94 0x5e 0136 '^' P
 95 0x5f 0137 '_' P
 96 0x60 0140 '`' P
 97 0x61 0141 'a' LC L AN
 98 0x62 0142 'b' LC L AN
 99 0x63 0143 'c' LC L AN
100 0x64 0144 'd' LC L AN
101 0x65 0145 'e' LC L AN
102 0x66 0146 'f' LC L AN
103 0x67 0147 'g' LC L AN
104 0x68 0150 'h' LC L AN
105 0x69 0151 'i' LC L AN
106 0x6a 0152 'j' LC L AN
107 0x6b 0153 'k' LC L AN
108 0x6c 0154 'l' LC L AN
109 0x6d 0155 'm' LC L AN
110 0x6e 0156 'n' LC L AN
111 0x6f 0157 'o' LC L AN
112 0x70 0160 'p' LC L AN
113 0x71 0161 'q' LC L AN
114 0x72 0162 'r' LC L AN
115 0x73 0163 's' LC L AN
116 0x74 0164 't' LC L AN
117 0x75 0165 'u' LC L AN
118 0x76 0166 'v' LC L AN
119 0x77 0167 'w' LC L AN
120 0x78 0170 'x' LC L AN
121 0x79 0171 'y' LC L AN
122 0x7a 0172 'z' LC L AN
123 0x7b 0173 '{' P
124 0x7c 0174 '|' P
125 0x7d 0175 '}' P
126 0x7e 0176 '~' P
127 0x7f 0177 C
###copy2.tst
x
###dmpdem.tst

00003274:  74 65 73 74 69 6e 67 20 31 20 32 20 33 0a 00 00

0000326c:  c8 43 00 00 00 00 00 00

00000040:  c0 1d 30 1b
###fact.tst
3! = 6
###factl.tst
###fast.tst
###getbn.tst
   33 0x0021 0000041
###getbn2.tst
    5 0x0005 0000005
   15 0x000f 0000017
###gettt.tst
12345678901234567890      100      200      300
                   a      101      201      301
                   b      102      202      302
###guess.tst
Each time I guess, please answer
 H if I'm high
 L if I'm low
 E if I guessed it
I guess 8
I guess 4
I guess 2
Your number is 1
Thanks for the game
###guess2.tst
Each time I guess, please answer
H if I'm high
L if I'm lowE if I guessed it
I guess 8
I guess 4
I guess 2
Your number is 1
Thanks for the game
###hello.tst
hello, world
###hello2.tst
hello, world
###hello3.tst
hello, world
###hello4.tst
hello, world
###hello5.tst
hello, world
###inits.tst
1 2 x
###loadtt.tst
12345678901234567890      100      200      300
                   a      101      201      301
                   b      102      202      302
###maxmin.tst
###mortg.tst
Enter principal (e.g. 82500.00): Enter annual interest rate (e.g. 16.25): Enter number of years: 
principal=10000.00  interest=18.0000%  years=1

 payment      total   interest  principal    balance
  number    payment    payment    payment
                                            10000.00
       1     916.80     150.00     766.80    9233.20
       2     916.80     138.50     778.30    8454.90
       3     916.80     126.82     789.98    7664.92
       4     916.80     114.97     801.83    6863.10
       5     916.80     102.95     813.85    6049.24
       6     916.80      90.74     826.06    5223.18
       7     916.80      78.35     838.45    4384.73
       8     916.80      65.77     851.03    3533.70
       9     916.80      53.01     863.79    2669.91
      10     916.80      40.05     876.75    1793.15
      11     916.80      26.90     889.90     903.25
      12     916.80      13.55     903.25       0.00
###mortg2.tst
Enter principal (e.g. 82500.00): Enter annual interest rate (e.g. 16.25): Enter number of years: 
principal=  10000.00  interest=18.0000%  years=1

 payment      total   interest  principal    balance
  number    payment    payment    payment
                                             1000000
       1      91680      15000      76680     923320
       2      91680      13850      77830     845490
       3      91680      12682      78998     766492
       4      91680      11497      80183     686309
       5      91680      10295      81385     604924
       6      91680       9074      82606     522318
       7      91680       7835      83845     438473
       8      91680       6577      85103     353370
       9      91680       5301      86379     266991
      10      91680       4005      87675     179316
      11      91680       2690      88990      90326
      12      91681       1355      90326          0
###powdem.tst
2 to the power 0 equals 1
2 to the power 1 equals 2
2 to the power 2 equals 4
2 to the power 3 equals 8
2 to the power 4 equals 16
2 to the power 5 equals 32
2 to the power 6 equals 64
2 to the power 7 equals 128
2 to the power 8 equals 256
2 to the power 9 equals 512
###pr2a.tst
    a =     1a4d
    b =        0
a + b =     1a4d
###pr2b.tst
    a = 1.230000e+02
    b = 0.000000e+00
a + b = 1.230000e+02
###prsam.tst
Enter a string:
CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
C            CCCCCCCCCCCCCCCCCCCCCCCCCC         CCCCCCCCCCCC
CCC        CCCCCCCCCCCCCCCCCCCCCCCC                 CCCCCCCC
CCCC      CCCCCCCCCCCCCCCCCCCCCCC                     CCCCCC
CCCC      CCCCCCCCCCCCCCCCCCCCCC            CCCCC      CCCCC
CCCC      CCCCCCCCCCCCCCCCCCCCC           CCCCCCCC      CCCC
CCCC      CCCCCCCCCCCCCCCCCCCCC          CCCCCCCCCC     CCCC
CCCC      CCCCCCCCCCCCCCCCCCCCC         CCCCCCCCCCC     CCCC
CCCC      CCCCCCCCCCCCCCCCCCCCC        CCCCCCCCCCC      CCCC
CCCC      CCCCCCCCCCCCCCCCCCCCC       CCCCCCCCCCC       CCCC
CCCC      CCCCCCCCCCCCCCCCCCCCC      CCCCCCCCCCC        CCCC
CCCC      CCCCCCCCCCCCCCCCCCC C     CCCCCCCCCCC         CCCC
CCCC      CCCCCCCCCCCCCCCCCC  C     CCCCCCCCCC          CCCC
CCCC      CCCCCCCCCCCCCCCCC   C      CCCCCCCC           CCCC
CCCC      CCCCCCCCCCCCCCC     CC                       CCCCC
C                             CCCCC                 CCCCCCCC
C                             CCCCCCCCC         CCCCCCCCCCCC
C             CCCCC                                        C
C             CCCCC                                        C
CCCC      CCCCCCCCCCCCC   CCCCCCCCCC      CCCCCCCCCCCC     C
CCCCC      CCCCCCCCCCC   CCCCCCCCCCC      CCCCCCCCCCCCCC   C
CCCCC      CCCCCCCCCCC   CCCCCCCCCCC      CCCCCCCCCCCCCCC  C
CCCCCC      CCCCCCCCC   CCCCCCCCCCCC      CCCCCCCCCCCCCCCC C
CCCCCC      CCCCCCCCC   CCCCCCCCCCCC      CCCCCCCCCCCCCCCCCC
CCCCCCC      CCCCCCC   CCCCCCCCCCCCC      CCCCCCC CCCCCCCCCC
CCCCCCC      CCCCCCC   CCCCCCCCCCCCC              CCCCCCCCCC
CCCCCCCC      CCCCC   CCCCCCCCCCCCCC      CCCCCC  CCCCCCCCCC
CCCCCCCC      CCCCC   CCCCCCCCCCCCCC      CCCCCCC CCCCCCCCCC
CCCCCCCCC      CCC   CCCCCCCCCCCCCCC      CCCCCCCCCCCCCCCC C
CCCCCCCCC      CCC   CCCCCCCCCCCCCCC      CCCCCCCCCCCCCCC  C
CCCCCCCCCC      C   CCCCCCCCCCCCCCCC      CCCCCCCCCCCCCC   C
CCCCCCCCCC          CCCCCCCCCCCCCCCC      CCCCCCCCCCCC     C
CCCCCCCCCCC        CCCCCCCCCCCCC                           C
CCCCCCCCCCC        CCCCCCCCCCCCC                           C
CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
###recpt1.tst
First = 1
Second = 1
###recpt2.tst
First = 1
Second = 2
###recpt3.tst
First = 1
Second = 2
###revers.tst
54321
able was i ere i saw elba
emit eht si won
###shuf52.tst
 0 49 40 21 46 12 43 38 30 34  1 44 31 
 3 10 27 20 35 32 25 36 28 47 33 18 23 
16 39 24 13  7 19 42 15  5 45  8  2  6 
41 22 17  9  4 50 14 48 37 26 11 51 29 

###sizes.tst
###slow.tst
###tower.tst
Start:
Peg 0: 5 4 3 2 1
Peg 1:
Peg 2:
Move disk 1 from 0 to 2
Move disk 2 from 0 to 1
Move disk 1 from 2 to 1
Move disk 3 from 0 to 2
Move disk 1 from 1 to 0
Move disk 2 from 1 to 2
Move disk 1 from 0 to 2
Move disk 4 from 0 to 1
Move disk 1 from 2 to 1
Move disk 2 from 2 to 0
Move disk 1 from 1 to 0
Move disk 3 from 2 to 1
Move disk 1 from 0 to 2
Move disk 2 from 0 to 1
Move disk 1 from 2 to 1
Move disk 5 from 0 to 2
Move disk 1 from 1 to 0
Move disk 2 from 1 to 2
Move disk 1 from 0 to 2
Move disk 3 from 1 to 0
Move disk 1 from 2 to 1
Move disk 2 from 2 to 0
Move disk 1 from 1 to 0
Move disk 4 from 1 to 2
Move disk 1 from 0 to 2
Move disk 2 from 0 to 1
Move disk 1 from 2 to 1
Move disk 3 from 0 to 2
Move disk 1 from 1 to 0
Move disk 2 from 1 to 2
Move disk 1 from 0 to 2
Finish:
Peg 0:
Peg 1:
Peg 2: 5 4 3 2 1
###vacat.tst
vacation.desc = leave for Hawaii
vacation.plan = 1984
vacation.start = 1983
vacation.finish = 1983
###EOF
