forked from zoolootech/CUGL-Oct1992
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CAP_V100.TXT
executable file
·10195 lines (6981 loc) · 349 KB
/
CAP_V100.TXT
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
==============================================================================
CUG101 -
-----------
CUG101.01-HSTONE.C By Terry Hayes, Clark Baker, Leor Zolman, Steve
Ward. "Stone"- H19 Version. Heath/Zenith version of stone a wari for
tty type terminals. ->STONE.C. [CP/M:BDS] Developed under BDS v. 1.41.
CUG101.02-FLYBY.C By Leor Zolman. Freak out for H19 terminals. Another
graphic demo for Heath/Zenith. [CP/M:BDS] Developed under BDS v. 1.41.
CUG101.03-XWORD.C By David M. Fogg. Crossword: Z-19 version. Crossword
puzzle game for H19/Z19. [CP/M:BDS] Written under BDS v. 1.41.
CUG101.04-STD.H By David M. Fogg. "Modified header for Fogg". The BDS
C standard l/O header file. [CP/M:]
CUG101.05-NLIFE.C By Steve Ward. Nlife. New H89/Z89 version of LIFE.
Uses H19 Graphics, 25th line to give a 50 by 80 field. ->LIFE, ALIFE.
[CP/M:BDS] Requires ALlFE.ASM, ALlFE.CRL, and LIFE.DAT. Written under
BDS v. 1.41.
CUG101.06-IQUIZ.C By Dave Fogg. LQUIZ: BDS conversion. Question and
answer game for heath/Zenith. [CP/M:BDS] Developed under BDS v. 1.41.
CUG101.07-RALLY.MAP By Steve Ward. Rally Game. Data for Rally. [CP/M:]
CUG101.08-R2.MAP By Steve Ward. Road Map Data. [CP/M:]
CUG101.09-LIFE.C By Leor Zolman. Life. Life for non-Heath/Zenith
terminals. ->NLIFE, ALIFE. [CP/M :BDS] Developed under BDS v. 1.41.
CUG101.10-TTT.C By Leor Zolman. Tic Tic Toe game. [CP/M:BDS] Written
under BDS v. 1.41.
CUG101.11-RALLY.C By Steve Ward. H19 Rally Game. Road game for H19/Z19
[CP/M:BDS] Works only on HeathKit/Zenith/H19/Z19 terminal or H89
Computer Written under BDS v. 1.41.
CUG101.12-HISTORY.CG3 By Robert Ward. HISTORY. Gives credit for the
files on the volume.
CUG101.13-MM.C By Stephen A. Ward, Leor Zolman. Mastermind Game. A
game of Mastermind. [CP/M:BDS] Written under BDS v. 1.41.
CUG101.14-CATALOG.CG3 VOLUME CG3. Contents of CP/M volume Games I.
[CP/M:]
CUG101.15-NLIFE.HLP By Steve Ward. Documentation for NLIFE. [CP/M:]
CUG101.16-JOTTO.C By David M. Fogg. JOTTO converted from PASCAL. word
game for Heath/Zenith. [CP/M:BDS] Developed under BDS v. 1.41.
CUG101.17- YAHTZEE.HLP By Steve Ward. H89 Yahtzee:game of dice.
documentation of help for YAHTZEE.C. [CP/M:]
CUG101.18-LIFE.DAT By Leor Zolman. NLIFE-date. Library of screen
images for NLIFE. [CP/M:]
CUG101.19-LINES.C By Leor Zolman. "Lines". A visual demo for
Heath/Zenith. [CP/M:BDS] Requires a 64 by 16 memory mapped video
board. Written under BDS v.1.41.
CUG101.20-STONE.C By rerry Hayes, Clark Baker, Leor Zolman. Stone.
Wari for tty type terminal. [CP/M:BDS] written under BCS v. 1.41.
CUG101.21-IQUIZ.DAT By Dave Fogg. Data for program question file.
->IQUIZ.C. [CP/M:]
CUG101.22-PRESSUP.C By Steve Ward. Press-up Game. A peg game [CP/M:]
Requires terminals with lower case characters.
CUG101.23-JOTTO.WDS By Dave Fogg. A word 1 list for Jotto ->JOTTO.C.
[CP/M:]
CUG101.24-TV.ANS Data for XWORD. [CP/M:]
CUG101.25-HARD1.ANS More for IQUIZ-a question and answer game.
->IQUIZ.C. [CP/M:]
CUG101.26-EZ1.ANS EZI. More for IQUIZ- 2 question and answer game,
cossword/ clues. ->IQUIZ.C. [CP/M:]
CUG101.27-XPERT1.ANS Data For XWORD. [CP/M ]
CUG101.28-MED1.ANS Part of IQUIZ.->IQUIZ.C. [CP/M:]
CUG101.29-YAHTZEE.C By Steve Ward. Yahtzee Dice Game. Classic
die/poker game. [CP/M:BDS] written under BDS v.1.41.
CUG101.30-BUGS.C By Steve Ward. "Bugs". More for Heath/Zenith. Leor
says - This one is weird. Video demonstration program for
Heath/Zenith. [CP/M:BDS] Developed under BDS v. 1.41.
CUG101.31-EUCLID.C By H. Moran. Euclid. Knuth algorithm for finding
greatest common denominator of two integers. [CP/M:] Developed under
BDS v. 141.
CUG101.32-DMF.C By David M. Fogg. DMF.C:BDS library functions. Library
for David Fogg Games. [CP/M:] Developed under BDS v. 1.41.
CUG101.33-ALIFE.CRL
CUG101.34-POLISH.C By H. Moran. "Polish". Reverse Palish notation
demonstration. Excellent example of stack implementation. [CP/M:]
Written under BDS v. 1.41.
CUG101.35-SUBMIT.DSK
CUG101.36-FALLOUT.C By Leor Zolman. Fallout for H19. According to
Leor- a logical extension of FLYBY. ->FLYBY.C. [CP/M:] Developed under
BDS v. 1.41.
CUG101.37-ALIFE.ASM By Steve Ward. Assembly For Z80 LIFE Game. New
version of LIFE. ->NLIFE LIFE [CP/M:BDS] Z80 only assembly code,
Developed under BDS v. 1.41.
CUG101.38-HEADERS
==============================================================================
CUG102 -
-----------
CUG102.01-PPONG.C By Robert H. Halstead. Polish Pong Game. A variation
of ping pong, for H19/H89. [CP/M:BDS] Written under BDS v. 1.41.
CUG102.02-PACMAN.REC By Dave Nixon. Part of Pacman package. [CP/M:]
CUG102.03- PACSCORE.C By Dave Nixon. Gets the score file for PACMAN
package- scoring for the CP/M PACMAN. ->PACMAN [CP/M:BDS] Written
under BDS v 1.41.
CUG102.04-PACUTILS.C By Dave Nixon. Pacutils.c. Another utility for
the pacman packaqe. ->Pacman. [CP/M:BDS] written under BDS v. 1.41.
CUG102.05-PACUTIL.C By Dave Nixon. Pacutil.c. A pacman utility, part
of pacman package. [CP/M BDS] Written under BDS v. 1.41.
CUG102.06-STONE.C By Terry Hayes, Clark Baker. "Stone"--H19 Version.
This is also known as Awari game- update from Games 1. [CP/M:BDS]
Written under BDS v. 1.41.
CUG102.07-BUGS.C By Steve Ward. "Bugs". Update from Games I, for
H19/H89 display terminal. [CP/M:BDS] written under 1.41 version BDS.
CUG102.08-CASIO.C By Steve Ward. A Casio watch game. [CP/M:BDS]
written under 1.41 BDS version.
CUG102.09-YAHTZEE.C By Steve Ward. Yahtzee Dice Game. a poker/dice
game. ->YAHTZEE.HLP. [CP/M:BDS] Written under BDS v. 1.41.
CUG102.10-NLIFE.C By Steve Ward. Nlife. Another LIFE simulator which
uses His graphics. [CP/M:BDS] Written under BDS v. 1.41.
CUG102.11-FISH.C By Leor Zolman. Go Fish. An exciting game of Go Fish.
[CP/M:BDS] Written under BDS v. 1.41.
CUG102.12-FALLOUT.C v 1.2 By Leor Zolman. Fallout for the H19. Logical
extent ion of FLYBY.C also an update from Games I. ->FLYBY.C.
[CP/M:BDS] Written under BDS v. 1.41.
CUG102.13-HANGMAN.C By Leor Zolman. The Same of Hangman. A game of
hangman -- the dictionary is a sample text file of words and/or
phrases -- one word or phrase per line. [CP/M:BDS] Written under BDS
v. 1.41.
CUG102.14-CASIO.REC
CUG102.15-YAHTZEE.HLP By Steve Ward. H89 Yahtzee: game of dice.
Helpful documentation of the rules for Yahtzee. ->YAHTZEE.C. [CP/M:]
CUG102.16-RALLY.C By Stev Ward. H19 Rally Game. Update o Rally from
Games I for the H19 [CP/M:BDS] works only for Heath/Zenith/H19/Z19
terminal or H89 computer. Written under BDS v. 1.41.
CUG102.17-WAVY.C By Leor Zolman. Wavy lines for the H19... Configured
for H19 terminal--wavy lines. [CP/M:BDS] Written under BDS v. 1.41.
CUG102.18-PACMAN.C By Dave Nixon. Pacman Fever. Pacman a game which
should be popular (it is). [CP/M:BDS] Written under BDS v. 1.41.
CUG102.19-WUMPUS.C By Leor Zolman. Wumpus. Program was borrowed from
PCC vol 2 no 1.A game of Wumpus. [CP/M:BDS] Written under BDS v. 1.41.
CUG102.20-OTHELLO.C By Bert Halsted. Game of Dramatic Reversals. A
game where two players place their pieces on a 8 by 8 board. If the
piece gets surrounded by the others pieces it becomes the other
players. [CP/M:BDS] Written under BDS v. 1.41.
CUG102.21-PACMONST.C By Dave Nixon. A unique game. [CP/M:]
CUG102.22-BG.C By Leor Zolman. Backgammon. A good and fun game of
backgammon. [CP/M :BDS] Written under BDS v. 1.41.
CUG102.23-NLIFEA.CRL
CUG102.24-NLIFE.DAT v 1.2 Update from Games I, for H19/H89 Data for
NLIFE.C. ->NLIFE.C. [CP/M:]
CUG102.25-PACDEFS.H By Dave Nixon. Part of Packman program
definitions. [CP/M:]
CUG102.26-RALLY.MAP By Steve Ward. Rally Game. An update from Games I,
more information for Rally. [CP/M:]
CUG102.27-SUBMIT.DSK
CUG102.28-CATALOG.021
==============================================================================
CUG103 -
-----------
CUG103.01-EDIT.COM
CUG103.02-NDIO.C New Package for BDS C. Directed I/O package for use
with BDS C v. 1.4x. New -allegedly more flexible, version of the
directed l/O package normally included with BDS C. [CP/M:BDS] Written
under BDS v. 1.4-1.43a. This file required if edit files are to be
recompiled.
CUG103.03-EDIT.DOC By Kathy Bacon. Documentation of Editor. A help
tile for Scott's Q.E.D. editor in BDS. ->EDIT.HLP. [CP/M:]
CUG103.04-UNPACK.C C source for UNPACK.COM. [CP/M:BDS] Written under
BDS v. 1.4-1.43a.
CUG103.05-ROFF2.C Source files written in C. Handles case of leading
blanks or tabs, empty lines. ->ROFFl.C. [CP/M:] Written under BDS v.
1.4-1.43a.
CUG103.06-EDIT.C Code for mom. First segment of source for Q.E.D.
Written in C and will compile with BDS C. [CP/M:BDS] Written in C.
Written under BDS v. 1.4-1.43a.
CUG103.07-EDIT.INC Included Source File. Source file containing global
declarations included in all edit source files during computation. A
standard include file for edit function. ->EDIT.C. [CP/M:BDS] Written
under BDS v. 1.4-1.43a.
CUG103.08-EDIT2.C Edit 2second half. Segment of the Q.E.D. source,
second half of the editor, 1ine storage system. ->EDIT.C. [CP/M:]
Written under BDSv.1.4-1.43a.
CUG103.09-HELP.EDI Help for EDIT. ->HELP.C. [CP/M:]
CUG103.10-HELP.COM
CUG103.11-EDIT.HLP Help with Wonderful EDIT. This file contains the
help messages available from within Q.E.D. ->EDIT.DOC. [CP/M:]
CUG103.12-ROFF.DOC ROFF Tutorials on the use of ROFF.COM. ->NDIQ.C.
[CP/M:]
CUG103.13-HELP.C Tutorial Program source. Source for tutorial programs
describing the use of Q.E.D.. Written in C for BDS C. [CP/M:BDS]
Written under BDSv 1.4-1.43a.
CUG103.14-ROFF.GOM
CUG103.15-EDIT3.C By Neal Somos. Edit 3. An editor everyone loves.
This is the searching section. -> EDIT.C. [CP/M:] Written under BDS v.
1.4-1.43a.
CUG103.16-CRYPT.COM
CUG103.17-PACK.C C source for the program used to pack this disk.
[CP/M. ] Written under BDS v. 1.4-1.43a.
CUG103.18-ROFFGLOB C source file containing qlobal declarations used
in ROFFl and ROFF2.C. ->ROFF.DOC. [CP/M:BDS] Written under BDS v.
1.4-1.43a.
CUG103.19-ROFF1.C Source files written in C Based on the formatter
presented in Kernighan and Plauger's Software Tools. [CP/M:] Written
under BDS v. 1.4-1.43a.
CUG103.20-PACK.COM
CUG103.21-READ.ME Unpacking Process. File describing the process of
unpacking. [CP/M:]
CUG103.22-HISTORIC.NOT By Neal Somos. History of QEO. A note an the
origins of Q.E.D. [CP/M:]
CUG103.23-PKUNPK.DOC
CUG103.24-CRCKLIST.CRC
CUG103.25-CRCK.COM
CUG103.26-CATALOG.DOC
CUG103.27-ENVIRON.DOC Warning of disk. Describes the requirements of
programs on this disk and the environment they were developed in.
[CP/M:BDS]
CUG103.28-UBGETC A modified version of the standard C library funtion
GETC. Compiled so that It only buffers up one sector, used one place
in editor. [CP/M:BDS] Written under BDS v. 1.4-1.43a.
CUG103.29-SUBMIT.DSK cug103.30-CRYPT.C v 1.1 By Kathy Bacon, Neal
Somos. Crypt. File encryption program that uses a pseudo-random number
generator with the keyword as a seed. [CP/M:] C Source written under
BDS v. 1.4-1.43a.
==============================================================================
CUG104 -
-----------
CUG104.01-STDLIB.TXT
CUG104.02-C6.C By Mike Bernson, Ron Cain. Small C-Part 6. Expression
handler. ->Cl.C, C5.C, C7.C. [CP/M:BDS v. 1.41]
CUG104.03-READ.ME By Mike Bernson, Ron Cain. Table of Contents.
[CP/M:BDSv.1.41]
CUG104.04-C7.C By Mike Bernson, Ron Cain. Small C-Part7. Expression
Handler. ->Cl.C, C5.C, C6.C. [CP/M:BDSv.1.41]
CUG104.05-RUNTIME.TXT
CUG104.06-C3.C By Mike Bernson Ron Cain. Small C-Part3. Utilities and
other little functions. ->Cl.C, C2.C. [CP/M:BDS v. 1.41]
CUG104.07-SUBMIT.C By Mike Bernson, Ron Cain. A submit utility written
in C that allows nesting of submits. [CP/M:BDS]
CUG104.08-C.SUB
CUG104.09-C1.COM
CUG104.10-C9.C By Mike Bernson, Ron Cain. Small C-Part 9. Code
generation. ->Cl.C, C8.C. [CP/M:BDS v. 1.41]
CUG104.11-C.DEF v 1.1 By Mike Bernson, Ron Cain. Header for Small C.
Static and macro definitions. ->Cl.C. [CP/M:BDS v. 1.41]
CUG104.12-C4.C By Mike Bernson, Ron Cain. Small C-Part 4. Utilities
and other little functions. ->Cl.C, C3.C. [CP/M:BDS v. 1.41]
CUG104.13-C2.C By Mike Bernson, Ron Cain. Small C-Part 2. New Function
handling, statement parser, some ending character check routines,
compound statement, if statement, while statement, switch statement,
for statement, return statement, break statement, continue statement.
->Cl.c. [CP/M:BDS v. 1.41]
CUG104.14-RUNTIME.ASM
CUG104.15-LINK.COM
CUG104.16-C8.c by Mike Bernson, Ron Cain. Small C-Part 8. Code
generation for the computer. ->C1.C, C9.C. [CP/M:BDS v. 1.41]
CUG104.17-STDLIB.ASM
CUG104.18-CUG104.HDR
CUG104.19-ASSEMBLE.COM
CUG104.20-CC.SUB
CUG104.21-CL.SUB
CUG104.22-FUNCTION.ASM
CUG104.23-FUNCTION.CRL
CUG104.24-C5.C By Mike Bernson, Ron Cain. Small C-Part 5. Expression
handler. ->Cl.C, C6.C, C7.C. [CP/M:BDS v. 1.41]
CUG104.25-SUBMIT.DSK
CUG104.26-TIME.C By Mike Bernson Ron Cain. Set and display time on
QTS-100 clock calendar board. [CP/M:BDS v. 1.41]
CUG104.27-C1.C By Mike Bernson, Ron Cain. Small C-Part 1. Main line
and opening text plus #include, #if, #nif, error summary! dumping t
extern, and static area for a Small C compiler. Executable image on
disk. ->ASSEMBLE.COM, LINK.COM. [CP/M:BDS v. 1.41] This Small C is NOT
self-compiling and requires special asssembler and linker which are
available ONLY in executable form.
==============================================================================
CUG105 -
-----------
CUG105.01-LONGCODE.PRN
CUG105.02-SCOPE.C A data entry facility that makes full-screen editing
functions available to the calling program. Has mode to support
creation of menus. [CP/M:BDS] Developed under BDS v. 1.4.
CUG105.03-LONGCODE.REL
CUG105.04-LONGCODE.CRL
CUG105.05-LONG.CRL
CUG105.06-LONG.DOC by Paul J. Gans. Long Integer Documentation.
->LONG.C. [CP/M:BDS] Developed under BDS v. 1.4.
CUG105.07-DIO.H External data for DIO.H. ->DIO.C. [CP/M:BDS] Developed
under BDS v. 1.4.
CUG105.08-FLEVAL.C Interaction Float Driver. Evaluates and tests the
FLOAT.C floating point package. ->FLOAT.C, FLOATXT.C. [CP/M:BDS]
Developed under BDS v. 1.4.
CUG105.09-COEFSET.C By L.C. Calhoun. Test Driver for FPC. Generates a
dump of floating point constants so they can be initialized with
INITB. ->INITB, FLOAT.C. [CP/M:BDS] Developed under BDS v. 1.4.
CUG105.10-CALHOUN.RMK
CUG105.11-FLOAT.DOC By Leor Zolman. FLOAT.C Documentation. ->FLOAT.C.
[CP/M:BDS] Developed under BDS v. 1.4.
CUG105.12-LONG.C By Dr. Paul Gans. Long Integer Package. Addition,
subtraction, multiplication, division, modulus, negation, and type
conversion operators for 32 bit signed Integers. ->LONCODE.MAC.
[CP/M:BDS] Developed under BDS v. 1.4. Uses z80 assembly module Li()
in LONGCODE.MAC.
CUG105.13-FLOATXT.C By L.C. Calhoun. Calhoun's Extension. Functions to
manipulate Mathias's fp numbers. Includes functions to change
magnitude, change sign, convert to and from int, normalize, round, and
assign. ->FLOAT.DOC, FLOAT.C. [CP/M:BDS] Developed under BDS v. 1.4.
CUG105.14-FLOATXT.DOC By Leor Zolman, Bob Mathias, L. C. Calhoun.
FLOATXT Documentation. ->FLOATXT.C. [CP/M:BDS] Developed under BDS v.
1.4.
CUG105.15-LONGCODE.MAC Assembly Modules -- Long Package. Assembly.
->LONG.C. [CP/M:BDS] Developed under BDS v. 1.4. Assembly requires
MACRO-80.
CUG105.16-FLOAT.C By Bob Mathias. FPP Support Routines. A floating
point package for BDS C. 32 bits precision, 7 bit exponents, binary
representation. Includes 3 address functions to add, subtract,
multiply, divide, compare, and format fp numbers. ->FLOAT.DOC.
[CP/M:BDS] Developed under BDS v. 1.4.
CUG105.17-DIO.C Directed I/O Package. Functions to simulate UNIX's
directed I/O capabilities. ->DIO.H. [CP/M:BDS] Developed under BDS v.
1.4.
CUG105.18-CTRIG.DOC By L.C. Calhoun. documentation for CTRIG.C.
->CTRIG.C. [CP/M:BDS] Developed under BDS v. 1.4.
CUG105.19-FLOATSUM.C By Bob Mathias. Floating Point Example. Builds d
running total of numbers entered from keyboard. ->FLOAT.C. [CP/m:BDS]
Developed under BDS v. 1.4.
CUG105.20-RANDOMX.C By Steve Passe. Random Buffered I/O. Buffered I/O
functions that use CP/M 2.2's read and write random sector facility.
[CP/M:BDS] Developed under BDS v. 1.4.
CUG105.21-SUBMIT.DSK
CUG105.22-CIO.C By Steve Ward. TTymode Support. Almost universal
console I/O package. Provides a reasonable flexible,
device-independent interface with ttymode control. [CP/M:BDS]
Developed under BDS v. 1.4.
CUG105.23-TESTTRIG.C By L.C. Calhoun. Interactive Trig Driver.
Illustrates use of CTRIG Functions. ->CTRIG.C. [CP/M:BDS] Developed
under BDS v. 1.4.
CUG105.24-CTRIG.C By L.C. Calhoun. Calhoun's Trig Functions. Uses
FLOATXT package to generate sine, cosine, tangent, arctangent, and
degree-radian conversions. ->FLOATXT, CTRIG.DOC. [CP/M:BDS] Developed
under BDS v. 1.4.
CUG105.25-CATALOG.CG7
CUG105.26-LIB.C Fixed Point Arithmetic. Functions to facilitate the
handling of dollars and cents. Uses a 4 byte fixed point
representation. Also includes functions to input validation and other
misc. ->LONG.C. [CP/M:BDS] Developed under BDS v. 1.4.
==============================================================================
CUG106 -
-----------
CUG106.01-BIOSLB.CRL
CUG106.02-BIOSLB.MAC
CUG106.03-BIOSLB.PRN
CUG106.04-BSPAT1-4.DOC Harvey R. Moran. Skeleton BIOS with Back Patch.
Explains how to patch CP/M to better handle backspace. Includes
skeletal assembly listing. [CP/M:BDS] Requires MACRO-80.
CUG106.05-CRL.DOC By M. J. Maney. Documentation for CRL.LIB.
->CRL.LIB, CSYM.LIB. [CP/M:BDS]
CUG106.06-CRL.LIB By M. J. Maney. CRL Macro. Macro definitions to
support the creation of functions in BDS Crl format. ->CRL.DOC,
CSYM.LIB. [CP/M:BDS] Requires MACRO-80.
CUG106.07-CHARFUN.ASM By M.J. Maney. Optimized Character Functions.
8080 assembly language definitions of some character functions.
Includes isalpha isupper, islower, isdigit isspace, toupper, and
tolower. ->CRL.LIB. [CP/M:BDS] Written under BDS v. 1.31 or v. 1.32.
Requiries MACRO-80 for assembly.
CUG106.08-CSYM.LIB By M. J. Maney. Symbol file for CRL MACROS.
Definitions useful to programmers using BDS. ->CRL.MAC. [CP/M:BDS]
Written under BDS v. 1.31 or v. 1.32.
CUG106.09-DEFFMODS.HRM By Harvey Moran. Make instructions for STDLIB.
->STDLIBl.C, ST0LIB2.C. [CP/M:BDS] Written under BDS v. 1.31 or
v.1.32.
CUG106.10-SUBMIT.DSK
CUG106.11-CATALOG.CG6
CUG106.12-STRINGS.C v 2.1 By Donald Stevens. String Manipulation.
Includes functions to delete, insert and replace characters, extrance
and mask substrings, and reverse strings. [CP/M:BDS] Writter under BDS
v. 1.31 or v. 1.32.
CUG106.13-GRAVT100.CRL
CUG106.14-IOFUN.ASM By M.J.Maney. Optimized Character I/O. Assembly
version of getc ->CHARFUN.ASM. [CP/M:BDS] Requires MACRO-80.
CUG106.15-MACHINE.ASM By M.J. Maney. Optimized Memory Operations.
Assembler functions for doing low-level operations such as filling,
moving, and exchanging blocks of memory. ->CHARFUN.ASM, IOFUN.ASM.
[CP/M:BDS] Requires MACRO-80.
CUG106.16-OTOI.C By Donald Stevens. Offset Octals to Integer. Converts
an offset octal number in ASCII to an integer. The number is in the
format xxx.xxx(a) and may be preceded by a white space. ->NTOI.C.
[CP/M:BDS] Written under BDS v. 1.31 or v. 1.32.
CUG106.17-PRVLIB.C By M. Goldberg. Goldbergs Functions. Library of
routines for use with BDS programs. [CP/M:BDS] Written under BDS v.
1.31 or v. 1.32.
CUG106.18-QUEUE.C By Scott W. Layson. FIFO Queue Package. Routines
which implement First In, First Out Queues, with two complete sets of
routines, one to handle integer sized objects and another for byte
sized objects. [CP/M:BDS] Written under BDS v. 1.31 or v. 1.32.
CUG106.19-STDEF.C v 1.3 By Donald Stevens. Definitions. Defintion file
for Steven's submissions. ->NTOI, OTOI, GRAVT100, STRlnGS, UTILI.
[CP/M:BDS] Written under BDS v. 1.31 or v. 1.32.
CUG106.20-UTIL1.C By Donald Stevens. Function Library. Includes
charcnt, linecut, ntoi, otoi, and wordcnt. ->OTOI.C, NTOI.C.
[CP/M:BDS] Written under BDS v. 1.31 or v. 1.32.
CUG106.21-SYSTEM.C v 1.2 By Donald Stevens. Steven's Definitions.
->STDEF. [CP/M:BDS] Written under BDS v. 1. 31 or v. 1.32.
CUG106.22-STDLIB2.C By Harvey Moran. Modified Standard Library -- two.
->STDLIBl.C. [CP/M:BDS] Written under BDS v. 1.31 or v. 1.32.
CUG106.23-STRINGS.CRL
CUG106.24-STDIO.SRC By M.D. Maney. I/O with Redirection. Simulates
some of UNlX's I/O capabilities and provides functions to parse
command line. [CP/M:BDS] Written under BDS v. 1.31 or v. 1.32. Very
obsolete.
CUG106.25-MOUSE.C By Havey Moran. Mouse Interpreter. C version of
mouse, a language which originally appeared in Pascal in Byte, July
1979. [CP/M:BDS] Written under BDS v. 1.31. or v. 1.32. Macro
expansions do not work properly.
CUG106.26-STRFUN.ASM By M.J. Maney. Optimized String Functions. String
functions implemented in assembly for efficiency. Includes strlen,
strcmp, strcpy, and strcat. ->CHARFUN.ASM, IOFUN.ASM, MACHINE.ASM.
[CP/M:BDS] Requires MACRO-80.
CUG106.27-STDLIB1.C By Harvey Moran. Modified Standard Library -- one.
Modified library needed by MOUSE, WP.C, XTRINS. ->STDLIb2.C.
[CP/M:BDS] Written under BDS v. 1.32.
CUG106.28-STDIO.LIB By M.J. Maney. STDIO Definitions. ->STDIO.SRC,
CSYMB.L1B. [CP/M:BDS]
CUG106.29-STDIO.DOC By M.J. Maney. STDIO Documentation. ->STDIO.SRC,
STDIO.LIB. [CP/M:BDS]
CUG106.30-XTRINSLB.MAC
CUG106.31-XTRINSLB.PRN
CUG106.32-XTRINSLB.CRL
CUG106.33-NTOI.C By Donald Stevens. Numeric to integer. Converts ascii
character to an integer. Most common number bases may be used. Seal 1
number crunching functions. ->OTOI.C. [CP/M:BDS-] OFFset octal will
not work. Written under BDS v. 1.31 or v. 1.32.
CUG106.34-FACT.MOU By Harvey Moran. Mouse Example. Factorial program
written in mouse. ->MOUSE.C. [CP/M:BDS] Written under BDS v. 1.31 or
v. 1.32.
CUG106.35-TEST.MOU By Harvey Moran. Mouse Test. Causes a bug in this
implementation to show itself. - >MOUSE.C. [CP/M: BDS] Wr i teen under
BDS v. 1.31 or v. 1.32.
CUG106.36-HISTORY.CG6
CUG106.37-GRAVT100.C v 3.0 By Donald Stevens. VT100 Graphics
Interface. Thirty-one functions to manipulate the VT100. Includes
functions to plot lines and boxes, set and clear tabs, clear lines and
windows, scroll, and change modes. [CP/M:BDS] Written under BDS v.
1.31 or v. 1.32.
==============================================================================
CUG107 -
-----------
CUG107.01-PIP.COM
CUG107.02-NEWFLVAL.C Source of Programs used to test FLOAT+44 -- the
second modification of the floating point package for BDS. [CP/M:]
CUG107.03-FLOAT+44.DOC By Leor Zolman. The Incredible fpp.
Documentation of FLOAT+44.c. ->FLOAT.DOC. [CP/M:]
CUG107.04-DEFF.CRL
CUG107.05-CTRIG.C By L.C. Calhoun. CTRIG. Uses the BDS C floating
point package, as modified by Calhoun called FLOATXT which computes
transcendental functions -- sine, cosine, tangent, arctangent.
->CTRIG.DOC. [CP/M:BDS]
CUG107.06-CTRIG.DOC By L. C. Calhoun. Notes on TRIG functions.
Documentation on the transcendental trig functions used in CTRIG.C.
>CTRIG.C. [CP/M:BDS]
CUG107.07-TESTCLOG.c A program which deals with testing the functions
in CLOGS.C. ->CLOGSC. [CP/M:]
CUG107.08-FI.C By Eric Martz. File directory and Backup utility for
CP/M. [CP/M:]
CUG107.09-FLOAT+44.CRL.
CUG107.10-NEWFLVAL.CRL
CUG107.11-CTRIG.CRL
CUG107.12-COEFSTAT.CRL
CUG107.13-TESTTRIG.CRL
CUG107.14-NEWFLVAL.COM
CUG107.15-TESTTRIG.COM
CUG107.16-CLOGS.CRL
CUG107.17-TESTCLOG.CRL
CUG107.18-TESTCLOG.COM
CUG107.19-FLOAT+44.C By L. C. Calhoun. Floating point package support
routines which were modified two times. ->FLOAT.DOC, FLOAT+44.DOC
[CP/M:]
CUG107.20-TESTTRIG.C resting Program for CTRIG. A simple program to
test sine, cosine, and tangent functions. ->CTRIG.C. [CP/M:]
CUG107.21-CLOGS.DOC By L. C. Calhoun. Notes on LOG Functions.
Documentation on CLOG.C. ->CLOGS.C [CP/M:BDS]
CUG107.22-FORM.CPM By L. C. Calhoun. Table of Contents. [CP/M:]
CUG107.23-FI.COM
CUG107.24-FIO.1 By Eric Martz. Part 1 of 3 Inclusions. Part of a set
of three inclusions (fio.1, fio.2, fio.3) designed to permit the
writing of source code as close as possible to K&R. ->FIO.2, FIO.3.
[CP/M:]
CUG107.25-FIO.2 By Eric Martz. Part 2 of 3 Inclusions. Designed to
permit the writing of source code as possible to K&R. ->FIO.1, FIO.3.
[CP/M:]
CUG107.26-FIO.3 By Eric Martz. Part 3 of 3 Inclusions. designed to
permit the writing of source code as close as possible to K&R.
->FIO.1, FIO.2. [CP/M:]
CUG107.27-CATALOG.BDS
CUG107.28-SUBMIT.DSK
CUG107.29-CLOGS.C By L.C Calhoun. CLOGS. four LOG functions in, C
using the BDS C floating point package as modified by LCC and
depending on the ability to insert nut 1 characters in a string.
->CLOGS.DOC. [CP/M:BDS]
CUG107.30-COEFSTAT.C By L.C. Calhoun. COEFSTAT. To obtain printout of
and test of f floating point constants so that they can be initialized
as static variables. [CP/M:BDS]
==============================================================================
CUG108 -
-----------
CUG108.01-COMPRESS.C v 2.2 By Donald Stevens. Compress.c. Compacts
files by replacing repeated strings with 1 character tokens.
->COMPRESS.DOC. [CP/M:]
CUG108.02-DATEDEMO.C By Bill Bolton. Example program for Mountain
Hardware S-100 board. Calls the date function and time function
displaying the returned strings. [CP/M:]
CUG108.03-COMP.C By David Fogg. Compares two files and list difference
- comparison is 1 line based. [CP/M:]
CUG108.04-CONOUT.C By David Fogg. Con out. Processes the output of
CONCORD to create a finished concordance. ->CONCORD.C. [CP/M:]
CUG108.05-CCRL.DOC By Leor Zolman. Documentation of instructions for
using CCRL.DOC. ->CCRL.C. [CP/M:]
CUG108.06-STRIP.C By Robert Ward. Strips the high order bit from each
byte in a text file. ->SCRUB.C. [CP/BDS C] Scrub is faster.
CUG108.07-WC.C By Les Hancock. A program to count words in a file.
[CP/M:]
CUG108.08-LIST.C By David Fogg. Text File Listing. ->CONCORD.c.
[CP/M:]
CUG108.09-MERGE.C By David Fogg. Merge Utility. Use with MSORT.
Generates a single sorted file from smaller sorted files. ->MSORT.C,
CONCORD.C. [CP/M:]
CUG108.10-MSORT.C By David Fogg. Sort utility using Quicksort
Algorithm to create sorted sub-files. EMERGE.C, CONCORD.C. [CP/M:]
CUG108.11-RT11.C v 1.1 By William C. Colley III.. RT-11 Adapter
Package. Converts RT11 format to CP/M format. [CP/M:]
CUG108.12-STD.H v 1.4 By David Fogg. The BDS C standard input/output
header file for KWIC related programs. ->KWIC.C. [CP/M:]
CUG108.13-WFREQ.C By David Fogg. Word Frequency Program. Tallies the
frequency of occurrence for word in a file. ->KWIC.C. [CP/M:]
CUG108.14-RT11.DOC. By William C. Colley III.. User Documentation.
Excellent documentation for RTll. ->RT11.c. [CP/M:]
CUG108.15-RTFILES.C By William C. Colley I}I.. A group of functions
which implement enough of RT11 to allow the rest of the package to
work. ->RTll.C. [CP/M:]
CUG108.16-KWIC.C By David Fogg. KWIC--KeyWordInContext. Generates an
unsort KWIC index. Generates rotated lines from IFILE to IFILE.UNK.
->CONCORD.C. [CP/M:]
CUG108.17-CB.C By William C. Colley III.. Pretty printer for C
programs. [CP/M:]
CUG108.18-SHOW.C By David Fogg. Permits the display (using escape
representations) of all characters in a file (Even parity bits).
[CP/M:]
CUG108.19-RT11.H By William C. Colley III.. Part of the RT11 Adaptor
Package. ->RT11.DOC, RT11.C. [CP/M:]
CUG108.20-CONCORD.C By David Fogg. Concord. Creates an intermediate
file which can be sorted to form a concordance for the input file.
Convert from KWIC. ->CONOUT, WFREQ, MERGE, MSORT, KWIC, LIST, STD.H.
[CP/M:]
CUG108.21-DMF.C By David Fogg. Funcotions for KWIC related programs.
->KWIC.c, CONCORD.c. [CP/M:]
CUG108.22-RT11.COM
CUG108.23-RTMISC.C By William C. Colley III.. More functions for the
RTll package. ->RT11.C. [CP/M:]
CUG108.24-DISK.C v 1.0 By Richard Damon. Disk Surgery. Allows direct
manipulation, of the media. The operator is allowed to examine and
modify the CP/M disk. [CP/M:] Works only with single density disks.
CUG108.25-B.C v 1.1 By Donald Stevens. Big Directory. Directory for
H89/H19, generates alphabetic directories. [CP/M:]
CUG108.26-COMPRESS.DOC v 2.3 By Donald Stevens. Compress
Documentation. ->COMPRESS.C. [CP/M:]
CUG108.27-CLOCK.H Header for Datedemo. [CP/M:]
CUG108.28-BIGDIR.C v 1.0 By Richard Damon. Big directory program for
standard 24 by 80 screens. [CP/M:]
CUG108.29-CATALOG.CG4
CUG108.30-COMPRESS.COM
CUG108.31-DATEDEMO.COM
CUG108.32-CHCNT.C By Leor Zolman. Demo program that counts the
occurrences of ASCII characters in a file. [CP/M:]
CUG108.33-CCRL.C By Jack Wierda. Creates a CRL file from an existing
COM file. ->CCRL.DOC. [CP/M: BDS]
CUG108.34-DATEDEMO.DOC By Bill Bolton). Useful C Time Functions.
Article advocating use of C also explains DATEDEMO. ->DATEDEMO.C.
[CP/M:]
CUG108.35-SUBMIT.DSK
CUG108.36-HISTORY.CG4
CUG108.37-CCOT.C By Leor Zolman. TRS-80 Preprocessor. Translates
special pound sign escapes into C special characters. [CP/M:BDS]
==============================================================================
CUG109 -
-----------
CUG109.01-COPYALL.C Simplified disk/file copying on one drive systems.
[CP/M:BDS] Files being transferred cannot any longer than BUFSIZ bytes
in length.C copyall will 1 check length.
CUG109.02-COUNT.C Count. Counts the number of characters, words, and
lines in a file. [CP/M:BDS]
CUG109.03-DEL.C v 1.1 Delete. Like ERA only requests verification,
before deleting file. DEL i s a directory maintenance utility that
provide a means for selectively erasing files from a CP/M disk. ->ERA.
[CP/M:BDS]
CUG109.04-FILECOMP.C By H. Moran. Files Compared. Compares byte for
byte, two files and lists differences. [CP/M:BDS]
CUG109.05-TYP.C By Scott W. Layson. Quiet Paging Utility. Uses largets
buffer possible while paging through an ASCII file. ->BIGFIO.C.
[CP/M:BDS] Uses BIGFIO.C.
CUG109.06-LPR.C By Leor Zolman. Line Printer Formatter. Sends file to
list device expanding tabs and interpreting other printer control
characters. [CP/M:BDS]
CUG109.07-PG.C By Jack S. Bakeman, Jr. Page. Outputs information to
standard output one page at a time. [CP/M:BDS] Screen Controls
tailored to TRS-80 Mod II.
CUG109.08-PNUM.C By Leor Zolman. Numbered Print. Prints a file with
line numbers. [CP/M:BDS]
CUG109.09-PRMDMP.C By Larry Langrehn. EPROM Dump. Reads proms and
display the obJect dump in HEX. Displays checksum at end. Also checks
for full erasure for 2716-58 type eproms. [CP/M:BDS] Assumes specific
eprom adapter schematic available from author.
CUG109.10-PG.COM
CUG109.11-SCREEN.C By Jack S. Bakeman, Jr. Flashwriting. Paging
utility with direct video drive intended for quickly viewing source
files. Distribution configured for TRS-8C Mod II. [CP/MBDS]
CUG109.12-TABIFY.C By Leor ZolMan. Tabify. Processes text file,
converting sequences of spaces into tabs wherever possible, in order
to reduce the size of the file. ->UNTAB.C. [CP/M:BDS]
CUG109.13-SCREEN.COM
CUG109.14-CATALOG.CG5
CUG109.15-ZLPR.C By Leor Zolman. Line Printer Formattor. Modified
version of LPR. Begins each function at top of new page. Allows
printing of selected pages. ->LPR. [CP/M:BDS]
CUG109.16-SEARCH.COM
CUG109.17-SEARCH.ASM
CUG109.18-UCSD2CPM.C Transfers text files from a USCD Pascal
structured disk to CP/M format disk. [CP/M:BDS]
CUG109.19-UCSDIR.C Lists the directory of a UCSD Pascal diskette
>UCSD2CPM.C. [CP/M:BDS]
CUG109.20-SCRUB.C Scrub control Chars. Copies a file deleting all
control characters except tab, 1f, cr, ff. ->SCRUB.C on CUG142.
[CP/M:BDS]
CUG109.21-VARTABS.C Variable Tab Filter. Entabs and detabs, allows tab
stops to be placed arbitrarily. ->TABIFY.C, UNTAB.C. [CP/M:BDS]
CUG109.22-WC2.C By David M. Fogg. Word Count. Counts characters,
words, and lines. [CP/M:BDS]
CUG109.23-WP.C Word Processor. Word Processor patterned after ROFF.
translated from Software Tools. ->WP.OUT, NRO, ROFF4, RAPP, LETTER,
UTIL-WP. [CP/M:BDS]
CUG109.24-UNTAB.C Takes a text file full of tabs and turns them into
the right number of spaces. ->TABIFY. [CP/M:BDS]
CUG109.25-XSDlR.ASM
CUG109.26-XSDIR.COM
CUG109.27-XSDMAC.LIB
CUG109.28-CONVERT.C By Leor Zolman. Converts regular C source files to
pound sign escape representation for editting on TRS80 or other
upper-case only machines. [CP/M:BDS]
CUG109.29-WP.OUT WP Documentation (formatted). ->WP.C. [CP/M:]
CUG109.30-WP.DOC WP Documentation (Raw). ->WP.C. [CP/M:]
CUG109.31-GLOBALS.WP WP Header. ->WP.C. [CP/M:BDS]
CUG109.32-MACDEFS.WP Text Formatter. Dot Command text formatter from
Software Tools. ->WP.C. [CP/M:BDS]
CUG109.33-NEWCHCNT.C By Scott W. Layson Frequency. Reads an input
ASCII file and compiles statistics on all possible character values.
Demonstrates use of bigfio.c. ->BICFIO.C. [CP/M:BDS]
CUG109.34-SUBMIT.DSK
CUG109.35-CONCAT.C By Scott W. Layson. Concantenate. Will concatenate
two files, putting the result in a third. Illustrates use of functions
in bigfio.c. ->BIGFIO.C. [CP/M:BDS]
CUG109.36-UTIL-WP.C WP-part 2. Utility functions for Word Processor.
->WP.C. [CP/M:BDS]
CUG109.37-HISTORY.CGS
CUG109.38-BlGFIO.C By Scott W. Layson. File I/O Functions. These
routines are almost exact replacements for fopen, fcreat, putc, getc,
ungetc, and fflush, except that they allow use of an arbitrarily large
buffer. ->TYP.C. [CP/M:BDS]
CUG109.39-LISTF.C HEX-ASCII Dump Utility. Dumps both ASCII and HEX
representations of a file, one record at a time. This utility copies a
record from a names file to the printer. Records may be selected by
random within the file. [CP/M:BDS]
CUG109.40-TELNET.C v 2.3 By Leor Zolman, Leo Kenen. Telnet
Communication Package. File transfer/terminal emulation package with
simple ASCII X-modem protocols (checksum). ->BDSCIO.H. [CP/M:BDS]
==============================================================================
CUG110 -
-----------
CUG110.01-FIXCCC.ASM Modification of Wild Cards. Motified runtime
package for yam and Umodem 2.7 which allows wild cards to work right.
->ccc.asm. [CP/M:] Be sure to change addresses in BDS.LIB if you
change ccc.asm.
CUG110.02-YAMTUART.H Global equates for specific installation and
modem ports. ->YAMSYS.H, YAM5.C. [CP/M:]
CUG110.03-YAM1.C Yam one. First time initializations, main command
decoding. ->YAM2.c, YAM3.c, YAM5.c, YAM7.c. [CP/M:]
CUG110.04-UMODEM27.DOC By Rick Conn. A note about Umodem v. 2.7.
->UMODEM27.C. [CP/M:]
CUG110.05-XYAMHELP.T By Chuck Forsberg. YAM (another modem). A short
help file for YAM. [CP/M:]
CUG110.06-YAM2.C By Ward Christenson. Yam two. Christensen protocol
handler for sending and receiving ascii and binary files. ->YAM1.c,
YAM3.c YAM5.c, YAM7.c. [CP/M:]
CUG110.07-YAMTRSII.H For the TRS-80 user global equates for specific
installation and modem ports. [CP/M:]
CUG110.08-YAMXHELP.T
CUG110.09-BTYEBNCH.C A quicker version of prime number program, A
benchmark program ala BYTE. [CP/M:]
CUG110.10-YAMZ89XM.H Global equates for specific installations and
modem ports. ->YAM5.C, YAMSYS.H. [CP/M:]
CUG110.11-YAMPHONE.T Telephone numbers used by YAM. [CP/M:]
CUG110.12-YAML.SUB
CUG110.13-YAM3.C Yam three. Conversation with data capture. File XMSN
without error checking. Two-way conversation with remote. ->YAMI.c,