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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
|
;AN000;
;m ;AN000;
PAGE ,132 ; ;AN000;
TITLE ANALYZE_AND_INVOKE - call appropriate routine based on request ;AN000;
.XLIST ;AN000;
INCLUDE STRUC.INC ;AN000;
.LIST ;AN000;
;.SALL ;AN000;
;��������������������������������� P R O L O G ����������������������������������������ͻ ;AN000;
;� � ;AN000;
;AN000;
; AC000 - P2944: Was displaying the lines and column settings for CON even
; though couldn't get them when ANSI.SYS isn't loaded. Now
; check if ANSI loaded before trying to display the settings.
; AC002 - P3331: ES was getting zeroed, which caused problems later in MODECP.
; AC003 - P3541: The retry status routine was assuming different format than
; the retry type byte was in. I fixed the status checking
; routine.
; AX004 - P3982: The screen was being cleared after the "Unable to shift
; screen ..." message.
; AC005 - P4934: The multiplex number for ANSI.SYS was changed due to a
; 5/20/88 conflict with a Microsoft product that has already been
; shipped.
;� � ;AN000;
;��������������������������������� P R O L O G ����������������������������������������ͼ ;AN000;
;AN000;
;AN000;
;��������������������������������� M A C R O S ����������������������������������������ͻ ;AN000;
;� � ;AN000;
;AN000;
GET_EXTENDED_ERROR MACRO ;AN000;
;AN000;
MOV BX,0 ;level for 3.00 to 4.00 ;AN000;
MOV AH,59H ;function number for get extended error ;AN000;
INT 21H ;AN000;
;AN000;
ENDM ;AN000;
;AN000;
;AN000;
BREAK MACRO X ;AN000;
JMP endcase_&X ;AN000;
ENDM ;AN000;
;AN000;
;AN000;
;AN000;
;AN000;
DISPLAY MACRO MESSAGE ;AN000;
MOV DX,OFFSET MESSAGE ;AN000;
CALL PRINTF ;AN000;
ENDM ;AN000;
;AN000;
;AN000;
;� � ;AN000;
;��������������������������������� M A C R O S ����������������������������������������ͼ ;AN000;
;AN000;
;AN000;
;AN000;
;�������������������������������� E Q U A T E S ���������������������������������������ͻ ;AN000;
;� � ;AN000;
;AN000;
INCLUDE modequat.inc ;AN000;
;AN000;
ANSIINT2F EQU 1AH ;INT 2F multiplex number for ANSI.SYS ;AC005;
ASCII_0 EQU "0" ;change one based binary printer number into ASCII printer number ;AN000;
ASCII_1 EQU "1" ;AN000;
B EQU 2 ;retry setting ;AN000;
blink EQU 0000H ;value for flags field of IOCTL data block ;AN000;
busy_retry_active EQU 2 ;indicates bust retry is active ;AN000;
check_installed EQU 0 ;request installed state for INT2F (ANSI) ;AN000;
;COLUMNS EQU 00000010B ; ;AN000;
com1_retry_type_status EQU 0 ;request for retry status on com1 ;AN000;
com2_retry_type_status EQU 2 ;request for retry status on com2 ;AN000;
com3_retry_type_status EQU 4 ;request for retry status on com3 ;AN000;
com4_retry_type_status EQU 6 ;request for retry status on com4 ;AN000;
display_device EQU 3 ;type of device, used for calls to IOCTL 0C function ;AN000;
E EQU 1 ;retry setting ;AN000;
error_retry_active EQU 1 ;indicates error retry is active ;AN000;
false EQU 00H ;AN000;
font_not_loaded EQU 31 ;return from IOCTL 0C (via ext err) indicating DISPLAY.SYS don't have necessary font loaded
get_current_settings EQU 07FH ;request for IOCTL 0C call ;AN000;
installed EQU 0FFH ;return from get_installed_state function ;AN000;
intense EQU 0001H ;value for flags field of IOCTL data block ;AN000;
IOCTL0C EQU [SI] ;AN000;
;LINES EQU 00000001B ;flag for IOCTL0C_functions_requested ;AN000;
lowercase EQU 020H ;when ORed with char value it changes it to lowercase ;AN000;
LPT1 EQU 1 ;mask for input to display_device_reroute_status, see modeecho ;AN000;
LPT2 EQU 2 ;mask for input to display_device_reroute_status, see modeecho ;AN000;
LPT3 EQU 4 ;mask for input to display_device_reroute_status, see modeecho ;AN000;
lpt1_retry_type_status EQU 0 ;request for retry status on lpt1 ;AN000;
lpt2_retry_type_status EQU 1 ;request for retry status on lpt2 ;AN000;
lpt3_retry_type_status EQU 2 ;request for retry status on lpt3 ;AN000;
MODE_INT2F_MULTIPLEX_NUMBER EQU 0 ;AN000;
no_retry EQU 3 ;retry setting ;AN000;
no_retry_active EQU 0 ;indicates no retry active on device ;AN000;
not_supported_on_machine EQU 29 ;return from IOCTL 0C (via ext err) indicating hardware don't support the function ;AN000;
parm_list_BX EQU [BX] ;AN000;
prn_ports_attached EQU CL ;used in printer_reroute_case and check_prn_ports_attached
R EQU 3 ;retry setting for com ports ;AN000;
ready_retry_active EQU 3 ;indicates ready retry is active ;AN000;
redirected EQU 2 ;network puts a 2 in printer address word for printers redirected
rerouted_printer_mask EQU BL ;holds the mask to check ptsflag1 with, see modeecho.asm
returned_retry_type EQU AL ;holds the returned status value ;AN000;
set_display_characteristics EQU 05FH ;request for IOCTL 0C call ;AN000;
status EQU 0 ;request for modecp ;AN000;
StdOut equ 1 ;AN000;
text EQU 01 ;mode field of IOCTL 0C call indicating screen mode type (vs APA mode) ;AN000;
true EQU 0FFH ;AN000;
unspecified EQU 0FFH ;state of item_tags in parm_list if the positonal parm was not specified ;AN664;
;AN000;
;� � ;AN000;
;�������������������������������� E Q U A T E S ���������������������������������������ͼ ;AN000;
;AN000;
;AN000;
;������������������������������ S T R U C T U R E S �����������������������������������ͻ ;AN000;
;� � ;AN000;
;AN000;
;AN000;
des_strt_packet STRUC ;AN000;
des_strt_pkfl DW 0000 ;assume a filename specified ;AN000;
des_strt_pklen DW 02 ;start with size of 'des_strt_pknum' ;AN000;
des_strt_pknum DW 0 ;number of cp numbers in the packet ;AN000;
des_strt_pkcp1 DW -1 ;code page number for 1st slot ;AN000;
des_strt_pkcp2 DW -1 ;AN000;
des_strt_pkcp3 DW -1 ;AN000;
des_strt_pkcp4 DW -1 ;AN000;
des_strt_pkcp5 DW -1 ;AN000;
des_strt_pkcp6 DW -1 ;AN000;
des_strt_pkcp7 DW -1 ;AN000;
des_strt_pkcp8 DW -1 ;AN000;
des_strt_pkcp9 DW -1 ;AN000;
des_strt_pkcpA DW -1 ;AN000;
des_strt_pkcpB DW -1 ;AN000;
des_strt_pkcpC DW -1 ;code page number for 12th slot ;AN000;
des_strt_packet ENDS ;AN000;
;AN000;
;The info_level is 0 on input, and contains a return code on exit. If carry set ;AN000;
;and 2 then the requested function is not supported on this machine. If carry ;AN000;
;set and 3 then DISPLAY.SYS does not have the appropriate RAM font loaded to ;AN000;
;support the requested function. ;AN000;
;AN000;
IOCTL0C_def STRUC ;AN000;
;AN000;
info_level DB 0 ;return code: 0 on input, 1 ?, 2 or 3 as returns ;AN000;
DB 0 ;reserved ;AN000;
data_length DW 14 ;length of the data block not including this field ;AN000;
flags DW 0 ;filled with intense or blink ;AN000;
mode DB text ;filled with text, may be returned as 2 which means APA ;AN000;
DB 0 ;reserved ;AN000;
colors DW 16 ;0 means monochrome ;AN000;
DW bogus ;width in pixels for APA modes ;AN000;
DW bogus ;length in pixels for APA modes ;AN000;
cols DW bogus ;nubmer of text columns ;AN000;
rows DW bogus ;number of text rows ;AN000;
;AN000;
IOCTL0C_def ENDS ;AN000;
;AN000;
INCLUDE COMMON.STC ;includes the following strucs ;AN000;
;AN000;
;codepage_parms STRUC ;AN000;
; cp_device DW ? ;AN000;
; des_pack_ptr DW ? ;AN000;
; font_filespec DW ? ;AN000;
; request_typ DW ? ;AN000;
;codepage_parms ENDS ;AN000;
;AN000;
;AN000;
;parm_list_entry STRUC ;used by parse_parameters and invoke ;AN000;
;AN000;
;parm_type DB bogus ;AN000;
;item_tag DB 0FFH ;AN000;
;value1 DW bogus ;used only for filespecs and code page numbers ;AN000;
;value2 DW bogus ;used only for filespecs and code page numbers ;AN000;
;keyword_switch_ptr DW 0 ;AN000;
;AN000;
;parm_list_entry ENDS ;AN000;
;AN000;
;AN000;
;� � ;AN000;
;������������������������������ S T R U C T U R E S �����������������������������������ͼ ;AN000;
;AN000;
ROM SEGMENT AT 0 ;AN000;
ORG 530H ;AN000;
resseg LABEL DWORD ;location of resident mode code vector ;AN000;
ROM ENDS ;AN000;
;AN000;
;AN000;
PAGE ;AN000;
PRINTF_CODE SEGMENT PUBLIC ;AN000;
ASSUME CS:PRINTF_CODE,DS:PRINTF_CODE,SS:PRINTF_CODE ;AN000;
;AN000;
;AN000;
;�������������������������������� P U B L I C S ���������������������������������������ͻ ;AN000;
;� � ;AN000;
;AN000;
PUBLIC analyze_and_invoke ;make available to "MAIN" ;AN000;
PUBLIC busy_retry_active ;used by modecom ;AN000;
PUBLIC cp_cb ;modepars needs to set the font file name ;AN000;
PUBLIC error_retry_active ;used by modecom ;AN000;
PUBLIC initialize_printer_port_case ;AN000;
PUBLIC no_retry_active ;used by modecom ;AN000;
PUBLIC parm_list_holder ;used by modeprin ;AN664;
PUBLIC ready_retry_active ;used by modecom ;AN000;
;AN000;
;� � ;AN000;
;�������������������������������� P U B L I C S ���������������������������������������ͼ ;AN000;
;AN000;
;AN000;
;�������������������������������� E X T R N S �����������������������������������������ͻ ;AN000;
;� � ;AN000;
;AN000;
EXTRN ANSI_not_loaded:BYTE ;see modedefs.inc ;AN000;
EXTRN BAUD_equal:BYTE ;the string "BAUD=", see modepars ;AN000;
EXTRN BAUD_index:WORD ;see modecom.asm ;AN000;
EXTRN B_str:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN BW40:NEAR ;see modedefs.inc ;AN000;
EXTRN BW40_item_tag:ABS ;see MODEPARS.ASM ;AN000;
EXTRN BW80:NEAR ;see modedefs.inc ;AN000;
EXTRN BW80_item_tag:ABS ;see MODEPARS.ASM ;AN000;
EXTRN busy_status:ABS
EXTRN close:ABS ;EQU 3EH ;CLOSE A FILE HANDLE,see modecpeq.inc ;AN000;
EXTRN columns_ptr:WORD ;see modesubs.inc ;AN000;
EXTRN CO40:NEAR ;see modedefs.inc ;AN000;
EXTRN CO40_item_tag:ABS ;see MODEPARS.ASM ;AN000;
EXTRN CO80:NEAR ;see modedefs.inc ;AN000;
EXTRN CO80_item_tag:ABS ;see MODEPARS.ASM ;AN000;
EXTRN codepage_index_holder:WORD ;see MODEPARS.ASM ;AN000;
EXTRN codepage_item_tag:ABS ;see MODEPARS.ASM ;AN000;
EXTRN columns_equal:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN columns_equal_msg:BYTE ;see MODEdefS.inc ;AN000;
EXTRN columns_holder:BYTE ;holder for printer chars per line (binary) value, see modeprin ;AN000;
EXTRN COLS_equal:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN columns_item_tag:ABS ;see MODEPARS.ASM ;AN000;
EXTRN COM1_str:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN COM2_str:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN COM3_str:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN COM4_str:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN COMX:ABS ;one of two possible values for "device_type"
EXTRN CON_str:BYTE ;"CON"see MODEPARS.ASM ;AN000;
EXTRN CRLF:BYTE ;see MODEDEFS.ASM, used before "Invalid parameter - " for consistent spacing ;AN000;
EXTRN data_bits_index:WORD ;see modecom.asm ;AN000;
EXTRN DATA_equal:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN DELAY_equal:BYTE ;see MODEPars.asm ;AN000;
EXTRN DEL_equal:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN des_start_packet:WORD ;AX000; des_strt_packet <>, see modepars ;AN000;
EXTRN device:BYTE ;holder of com number for invoke and modeecho ;AN000;
EXTRN device_name:WORD ;AN000;
EXTRN device_type:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN dev_name_size:WORD ;see MODEPARS.ASM ;AN000;
EXTRN dev_open_mode:ABS ;read write access ;AN000;
EXTRN display_printer_reroute_status:NEAR ;see modeecho.asm
EXTRN eighty_item_tag:ABS ;see MODEPARS.ASM ;AN000;
EXTRN eighty_str:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN error_status:ABS ;see MODEPRIN
EXTRN five_char_underline:BYTE ;see modedefs.inc ;AN000;
EXTRN four_char_underline:BYTE ;see modedefs.inc ;AN000;
EXTRN function_not_supported:BYTE ;see modedefs.inc ;AN000;
EXTRN err1:BYTE ;see modedefs.inc
EXTRN E_str:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN fourty_item_tag:ABS ;see MODEPARS.ASM ;AN000;
EXTRN fourty_str:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN handle_40_or_80:NEAR ;see modescrn ;AN000;
EXTRN illegal_device_ptr:WORD ;see modesubs.inc
EXTRN keyword:ABS ;see MODEPARS ;AN000;
EXTRN invalid_number_of_parameters:WORD ;AN000;
;EXTRN invalid_parameter:WORD ;<CR><LF>"Invalid parameter '????'",beep ;AN000;
EXTRN len_COMX_str:ABS ;see MODEPARS.ASM ;AN000;
EXTRN len_CON_str:ABS ;see MODEPARS.ASM ;AN000;
EXTRN len_LPTX_str:ABS ;see MODEPARS.ASM ;AN000;
EXTRN L_item_tag:ABS ;see MODEPARS.ASM ;AN000;
EXTRN LINES_equal:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN LINES_equal_msg:BYTE ;see MODEDEFS.INC ;AN000;
EXTRN lines_item_tag:ABS ;see MODEPARS.ASM ;AN000;
EXTRN long_underline:BYTE ;see modedefs.inc ;AN000;
EXTRN lptno:BYTE ;holder of printer number for invoke and modeecho ;AN000;
EXTRN lpt1_retry_type:BYTE ;see RESCODE
EXTRN LPT1_str:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN LPT2_str:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN LPT3_str:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN notredpt:BYTE ;printer number in "LPTn not rerouted"
EXTRN max_request_type:ABS ;see MODEPARS.ASM ;AN000;
EXTRN modecom:NEAR ;AN000;
EXTRN modecp:NEAR ;AN000;
EXTRN modeecho:NEAR ;AN000;
EXTRN modeecno:NEAR ;AN000;
EXTRN modeprin:NEAR ;AN000;
EXTRN modify_resident_code:NEAR ;see modeprin ;AN000;
EXTRN MONO:NEAR ;see modedefs.inc ;AN000;
EXTRN MONO_item_tag:ABS ;see MODEPARS.ASM ;AN000;
EXTRN no_retry_flag:ABS ;see MODEPRIN
EXTRN noerror:BYTE ;AN000;
EXTRN none_item_tag:ABS ;see modepars.asm ;AN000;
EXTRN none_str:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN offending_parameter:BYTE ;see MODEMES ;AN000;
EXTRN OFF_item_tag:ABS ;see pares.asm ;AN000;
EXTRN off_str:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN onethirtytwo_item_tag:ABS ;see modepars.asm ;AN000;
EXTRN ON_item_tag:ABS ;see pares.asm ;AN000;
EXTRN on_str:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN open:ABS ;open a device handle, see modecpeq.inc ;AN000;
EXTRN parity_equal:BYTE ;see modepars.asm ;AN000;
EXTRN parity_index:WORD ;see modecom ;AN000;
EXTRN parm2:BYTE ;see MODEPRIN.ASM ;AN000;
EXTRN parm3:BYTE ;see MODEPARS.ASM ;AN000;
;EXTRN parm_lst:BYTE ;parm_list_entry max_pos_parms DUP (<>), see MODEPARS.ASM ;AN000;
EXTRN parms_form:byte ;indicator of whether the parameters were entered as positionals or as keywords ;AN000;
EXTRN pbaud_ptr:WORD ;AN000;;pointer to the baud rate string in the initialization message for COM, see modesubs.inc
EXTRN pdata:BYTE ;see modesubs.inc ;AN000;
EXTRN pparity_ptr:WORD ;see modesubs.inc ;AN000;
EXTRN pparm:BYTE ;used by modecom and for message, see modesubs.inc ;AN000;
EXTRN prepare:ABS ;AN000;
EXTRN prepare_item_tag:ABS ;see MODEPARS.ASM ;AN000;
EXTRN PRINTR:WORD ;PRINTER BASE (40:8), HOLDS PORT ADDRESSES OF PRINTER CARDS
EXTRN pstop_ptr:WORD ;see modesubs.inc ;AN000;
EXTRN PRINTF:NEAR ;AN000;
EXTRN rate_equal:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN ready_status:ABS ;see modeprin
EXTRN redpt:BYTE ;printer number (n) in message "LPTn rerouted to COMm"
EXTRN refresh:ABS ;AN000;
EXTRN retry_item_tag:ABS ;see MODEPARS.ASM ;AN000;
EXTRN request_type:BYTE ;see "MODEPARS.ASM" ;AN000;
EXTRN retry_equal:BYTE ;see MODEDEFS.INC ;AN000;
EXTRN retry_equal_str:BYTE ;AN000;
EXTRN retry_index:WORD ;see MODECOM.ASM ;AN000;
EXTRN retry_type_ptr:WORD ;see MODESUBS.INC ;AN000;
EXTRN row_ptr:WORD ;see modesubs.inc ;AN000;
EXTRN row_type:WORD ;see modesubs.inc ;AN000;
EXTRN R_item_tag:ABS ;see MODEPARS.ASM ;AN000;
EXTRN R_str:BYTE ;see MODEPARS.ASM ;AN000;
EXTRN Required_font_not_loaded:BYTE ;see modedefs.asm ;AN000;
EXTRN res_com_retry_type:ABS ;see RESCODE.SAL ;AN000;
;EXTRN res_lpt_retry_type:ABS ;see RESCODE.SAL ;AN000;
EXTRN select:ABS ;request type for 'modecp' ;AN000;
EXTRN select_item_tag:ABS ;see MODEPARS.ASM ;AN000;
EXTRN serial_base:WORD ;see modecom ;AN000;
EXTRN set_con_features:ABS ;AN000;
EXTRN set_retry_type:NEAR ;see modeprin ;AN000;
EXTRN shift_screen:NEAR ;see modescrn ;AN000;
EXTRN stat_dev_ptr:WORD ;see modedefs.inc ;AN000;
EXTRN status_for_device:BYTE ;"Status for device %1:" see modedefs.inc ;AN000;
EXTRN status_for_everything:ABS ;AN000;
EXTRN stop_bits_index:WORD ;see modecom.asm ;AN000;
EXTRN stop_equal:BYTE ;"STOP=", see modepars ;AN000;
EXTRN typamat:NEAR ;see "typamat.asm" ;AN000;
;AN000;
;possible values of "request_type" ;AN000;
;AN000;
EXTRN all_con_status:ABS ;AN000;
EXTRN codepage_prepare:ABS ;AN000;
EXTRN codepage_refresh:ABS ;AN000;
EXTRN codepage_select:ABS ;AN000;
EXTRN codepage_status:ABS ;AN000;
EXTRN codepage_prepared_status:ABS ;AN000;
EXTRN codepage_selected_status:ABS ;AN000;
EXTRN com_status:ABS ;AN000;
;EXTRN con_status:ABS ;AN000;
EXTRN initialize_com_port:ABS ;AN000;
EXTRN initialize_printer_port:ABS ;AN000;
EXTRN old_initialize_printer_port:ABS ;AN000;
EXTRN old_video_mode_set:ABS ;AN000;
EXTRN printer_reroute:ABS ;AN000;
EXTRN printer_status:ABS ;AN000;
EXTRN turn_off_reroute:ABS ;AN000;
;AN000;
;AN000;
;� � ;AN000;
;�������������������������������� E X T R N S �����������������������������������������ͼ ;AN000;
;AN000;
;AN000;
;������������������������������������ D A T A �����������������������������������������ͻ ;AN000;
;� � ;AN000;
;AN000;
ANSI_installed DB false ;boolean indicator of whether ANSI.SYS is installed ;AN000;
columns_specified DB false ;indicates if columns= was on the command line, see set_con_features_case;AN000;
code_page_numbers_encountered DB 0 ;AN000;
cp_cb codepage_parms <> ;codepage subroutine parameter block ;AN000;
com_ports_attached DB 0 ;number of com ports in the machine
current_packet_cp_number DW -2 ;adjustment for accessing current 'des_strt_pkcp?' in 'des_start_packet' ;AN000;
delay_holder DB 1 ;holder for binary form of delay requested ;AN000;
device_request DB ? ;holds device request value ;AN000;
max_pknum EQU ($ - OFFSET des_start_packet.des_strt_pkcp1)/2 ;most cp numbers can send at once ;AN000;
;IOCTL0C_functions_requested DB 0 ;for displaying messages, flag byte indicating IOCTL functions requested ;AN000;
need_typamat_call DB false ;boolean for saving up delay and rate settings ;AN000;
need_IOCTL0C DB false ;boolean for saving up parts of an IOCTL 0CH call ;AN000;
parm_list_holder DW bogus ;holder for address of parsed parameter list for when BX is needed elsewhere ;AN000;
parm_list_index_holder DW bogus ;holder for index of parsed parameter list for when DI is needed elsewhere ;AN000;
i DB 0 ;index for status loop ;AN000;
rate_holder DB 32 ;holder for binary form of rate value ;AN000;
row_value DB ? ;holder for binary form of row value during status display ;AN000;
;AN000;
IOCTL0C_data_block IOCTL0C_def<> ;AN000;
PUBLIC IOCTL0C_data_block
;AN000;
;� � ;AN000;
;������������������������������������ D A T A �����������������������������������������ͼ ;AN000;
;AN000;
check_ANSI_installed PROC NEAR ;See if ANSI.SYS is installed ;AC001;
MOV AH,ANSIINT2F ;AC001;
MOV AL,check_installed ;AC001;
INT 2FH ;AC001;
.IF <AL EQ installed> THEN ;AC001;
MOV ANSI_installed,true ;initialized to false, so no ELSE needed ;AC001;
.ENDIF
check_ANSI_installed ENDP ;AC001;
;------------------------------------------------------------------------------
setup_device_name PROC NEAR ;AN000;
;AN000;
MOV DX,device_name ;DX=pointer to ASCIIZ device name ;AN000;
MOV cp_cb.cp_device,DX ;Set the pointer to the device name ASCIIZ in the parameter block for 'modecp'. ;AN000;
;AN000;
RET ;AN000;
;AN000;
setup_device_name ENDP ;AN000;
;AN000;
;------------------------------------------------------------------------------- ;AN000;
;AN000;
;AN000;
do_IOCTL0C PROC NEAR ;AN000;
PUBLIC DO_IOCTL0C ;AN000;
MOV AH,open ;open device ;AN000;
MOV AL,dev_open_mode ;AL=open mode for devices, see modecpeq.inc ;AN000;
MOV DX,OFFSET CON_str ;know that CON is being opened, avoid using user input and having to remove colon ;AN000;
INT 21H ;AN000;
;AN000;
MOV BX,AX ;BX=handle of CON ;AN000;
MOV AX,440CH ;AN000;
MOV CH,display_device ;type of device ;AN000;
MOV DX,OFFSET IOCTL0C_data_block ;AN000;
INT 21H ;the IOCTL data block is filled with the current settings ;AN000;
PUSHF ;save result of the IOCTL ;AN000;
;AN000;
MOV AH,3EH ;assume that BX still has the handle ;AN000;
INT 21H ;close CON, open and close each time because if error may not be back to close ;AN000;
;AN000;
POPF ;restore result of the IOCTL ;AN000;
;AN000;
RET ;AN000;
;AN000;
do_IOCTL0C ENDP ;AN000;
;AN000;
;------------------------------------------------------------------------------- ;AN000;
;AN000;
display_columns_status PROC NEAR ;AN000;
;AN000;
MOV CL,get_current_settings ;AN000;
CALL do_IOCTL0C ;get current settings of CON ;AN000;
.IF <IOCTL0C_data_block.mode EQ text> THEN ;AN000;
.IF <IOCTL0C_data_block.cols EQ 80> THEN ;AN000;
MOV columns_ptr,OFFSET eighty_str ;set up message block with pointer to "80" ;AN000;
.ELSE ;AN000;
MOV columns_ptr,OFFSET fourty_str ;AN000;
.ENDIF ;AN000;
.ELSE ;AN000;
MOV columns_ptr,OFFSET NONE_str ;AN000;
.ENDIF ;AN000;
display COLUMNS_equal_msg ;AN000;
;AN000;
RET ;AN000;
;AN000;
display_columns_status ENDP ;AN000;
;AN000;
;------------------------------------------------------------------------------- ;AN000;
;AN000;
display_lines_status PROC NEAR ;AN000;
;AN000;
MOV CL,get_current_settings ;AN000;
CALL do_IOCTL0C ;get current settings of CON ;AN000;
.IF <IOCTL0C_data_block.mode EQ text> THEN ;AN000;
MOV AX,IOCTL0C_data_block.rows ;AN000;
MOV row_value,AL ;row_value=binary row value ;AN000;
MOV row_type,right_align+unsgn_bin_byte ;set up sublist so msg ret knows it is a binary byte ;AN000;
MOV row_ptr,OFFSET row_value ;set up LINES_equal sublist ;AN000;
.ELSE ;AN000;
MOV row_ptr,OFFSET NONE_str ;AN000;
.ENDIF ;AN000;
display LINES_equal_msg ;AN000;
;AN000;
RET ;AN000;
;AN000;
display_lines_status ENDP ;AN000;
;-------------------------------------------------------------------------------
old_video_mode_set_IOCTL PROC NEAR ;AN004;
MOV CL,set_display_characteristics ;AN000;
CALL do_IOCTL0C ;AN000;
.IF C THEN ;AN000;
get_extended_error ;AN000;
.IF <AX EQ not_supported_on_machine> THEN ;AN000;
DISPLAY Function_not_supported ;AN000;
.ELSEIF <AX EQ font_not_loaded> THEN ;AN000;
DISPLAY Required_font_not_loaded ;AN000;
.ENDIF ;AN000;
MOV noerror,false ;AN000;
.ENDIF ;AN000;carry ;AN000;
RET
;AN004;
old_video_mode_set_IOCTL ENDP ;AN004;
;AN000;
;------------------------------------------------------------------------------- ;AN000;
;������������������������������������������������������������������������������� ;AN000;
;�
;� CHECK_COM_PORTS_ATTACHED
;� ------------------------
;�
;� Return the number of com ports in the machine.
;�
;� INPUT: none
;�
;�
;� RETURN: com_ports_attached - number of com ports
;�
;�
;� MESSAGES: none
;�
;� REGISTER
;� USAGE: SI - index of the FOR loop and displacement from serial_base
;� ES - holds segment of ROM data area
;�
;�
;� ASSUMPTIONS: The user has initialized com_ports_attached to zero.
;�
;�
;� SIDE EFFECT: ES is lost
;� SI is lost
;� ;AN000;
;������������������������������������������������������������������������������� ;AN000;
check_com_ports_attached PROC NEAR
MOV SI,0
MOV ES,SI ;now ES:SERIAL_BASE addresses 40:0=0:400
.FOR SI = 0 TO 6 STEP 2
.IF <<WORD PTR ES:SERIAL_BASE[SI]> NE 0> THEN ;SEE IF THE COM PORT EXISTS
INC com_ports_attached
.ENDIF
.NEXT SI
RET
check_com_ports_attached ENDP
;------------------------------------------------------------------------------- ;AN000;
;������������������������������������������������������������������������������� ;AN000;
;�
;� CHECK_PRN_PORTS_ATTACHED
;� ------------------------
;�
;� Return the number of printer ports in the machine. The network will put a 2
;� in th address word if the printer is redirected, so for the printer to
;� actually exist the address must be greater than 2 ("redirected"). Since
;� can't have infinite retry on redirected printers only want to count ports
;� with >2 for addresses.
;�
;� INPUT: none
;�
;�
;� RETURN: prn_ports_attached - number of printer ports
;�
;�
;� MESSAGES: none
;�
;� REGISTER
;� USAGE: SI - index of the FOR loop and displacement from printr
;� ES - holds segment of ROM data area (0 in this case)
;�
;�
;� ASSUMPTIONS: All valid printer port addresses are >2.
;�
;�
;� SIDE EFFECT: ES is lost
;� SI is lost
;� ;AN000;
;������������������������������������������������������������������������������� ;AN000;
check_prn_ports_attached PROC NEAR
MOV SI,0
MOV ES,SI ;now ES:printr addresses 40:8=0:408
.FOR SI = 0 TO 4 STEP 2 ;for each of 3 printer port address holder words
.IF <<WORD PTR ES:printr[SI]> GT redirected> THEN ;SEE IF THE PORT EXISTS
INC prn_ports_attached
.ENDIF
.NEXT SI
RET
check_prn_ports_attached ENDP
;------------------------------------------------------------------------------- ;AN000;
;������������������������������������������������������������������������������� ;AN000;
;� ;AN000;
;� GET_DEVICE_RETRY_TYPE ;AN000;
;� --------------------- ;AN000;
;� ;AN000;
;� Return the type of retry active for comX or lptX. ;AN000;
;� ;AN000;
;� INPUT: device_request - scalar indicating what status the user requested. ;AN000;
;� use the following equates: ;AN000;
;� ;AN000;
;� com1_retry_type_status EQU 0 ;AN000;
;� com2_retry_type_status EQU 2 ;AN000;
;� com3_retry_type_status EQU 4 ;AN000;
;� com4_retry_type_status EQU 6 ;AN000;
;� lpt1_retry_type_status ;AN000;
;� lpt2_retry_type_status ;AN000;
;� lpt3_retry_type_status ;AN000;
;� ;AN000;
;� ;AN000;
;� RETURN: returned_retry_type - scalar indicating type of retry active for ;AN000;
;� the requested device. compare with the following equates: ;AN000;
;� ;AN000;
;� no_retry_flag ;AN000;
;� error_status ;AN000;
;� busy_status ;AN000;
;� ready_status ;AN000;
;� ;AN000;
;� retry_type_ptr - set to proper string ;AN000;
;� ;AN000;
;� ;AN000;
;� MESSAGES: none ;AN000;
;� ;AN000;
;� REGISTER ;AN000;
;� USAGE: CL - For com ports it serves as bit shift count for the retry type byte.
;� ;AN000;
;� AL - On exit holds retry type scalar on exit (returned_retry_type) ;AN000;
;� ;AN000;
;� ES - holds segment of resident mode code ;AN000;
;� ;AN000;
;� ;AN000;
;� CONVENTIONS: The value in device_request is used as an index into the LPTX ;AN000;
;� array of retry type flags, or as a bit shift count for the ;AN000;
;� COM retry type byte. ;AN000;
;� ;AN000;
;� ;AN000;
;� ASSUMPTIONS: The user has initialized device_request on entry with ;AN000;
;� the equates provided. ;AN000;
;� ;AN000;
;� ;AN000;
;� SIDE EFFECT: none. ;AN000;
;� ;AN000;
;������������������������������������������������������������������������������� ;AN000;
;AN000;
get_device_retry_type PROC NEAR ;AN665;
PUBLIC get_device_retry_type
PUSH BX ;AN665;
PUSH ES ;AN665;
XOR BX,BX ;AN665;
MOV ES,BX ;set segment to zero ;AN665;
.IF <<ES:WORD PTR resseg> NE 0000H> THEN ;IF code resident THEN ;AN665;
MOV ES,ES:WORD PTR resseg[2] ;ES=seg of resident code ;AN665;
.IF <device_type EQ COMx> THEN
MOV CL,device_request ;CL has 0, 2, 4 or 6 for COM 1, 2, 3 or 4 respectively ;AC003;
MOV returned_retry_type,BYTE PTR ES:res_com_retry_type ;AL=the status byte for all 4 com ports ;AN665;
SHR returned_retry_type,CL ;AL=XXXXXX??, where ?? is the retry bits for port in question ;AC003;
AND returned_retry_type,00000011B ;AL=000000??, where ?? is the retry bits for port in question ;AC003;
.ELSE ;AN665;
MOV BL,device_request ;BX=index into retry bytes in resident code ;AN665;
MOV returned_retry_type,BYTE PTR ES:lpt1_retry_type[BX] ;AN665;
.ENDIF ;AN665;
.ELSE ;AN665;
MOV returned_retry_type,no_retry_flag ;AN665;
.ENDIF ;AN665;
.IF <returned_retry_type EQ B> OR ;COM form of busy flag ;AN665;
.IF <returned_retry_type EQ busy_status> THEN ;AN665;
MOV retry_type_ptr,OFFSET B_str ;AN665;
.ELSEIF <returned_retry_type EQ E> OR ;COM form of error flag ;AN665;
.IF <returned_retry_type EQ error_status> THEN ;AN665;
MOV retry_type_ptr,OFFSET E_str ;AN665;
.ELSEIF <returned_retry_type EQ R> OR ;COM form of ready flag ;AN665;
.IF <returned_retry_type EQ ready_status> THEN ;AN665;
MOV retry_type_ptr,OFFSET R_str ;AN665;
.ELSE ;AN665;
MOV retry_type_ptr,OFFSET NONE_str ;not E, B or R. ;AN665;
.ENDIF ;AN665;
POP ES ;AN665;
POP BX ;AN665;
RET ;AN665;
get_device_retry_type ENDP ;AN665;
;AN000;
;������������������������������������������������������������������������������� ;AN000;
;� ;AN000;
;� ANALYZE_AND_INVOKE ;AN000;
;� ------------------ ;AN000;
;� ;AN000;
;� The command line is boken down into pieces by "parse_parameters". Each piece ;AN000;
;� is analyzed here, and the appropriate routine called to setup and/or execute ;AN000;
;� the requested function. ;AN000;
;� ;AN000;
;� ;AN000;
;� ;AN000;
;� ;AN000;
;� ;AN000;
;� ;AN000;
;� INPUT: request_type - scalar indicating what operation the user requested. ;AN000;
;� ;AN000;
;� ;AN000;
;� ;AN000;
;� ;AN000;
;� RETURN: none ;AN000;
;� ;AN000;
;� ;AN000;
;� MESSAGES: none ;AN000;
;� ;AN000;
;� ;AN000;
;� ;AN000;
;� ;AN000;
;� REGISTER ;AN000;
;� USAGE: DI - index into the list of parsed parms, the array parm_list. ;AN000;
;� ;AN000;
;� CX - temporary holder for memory to memory MOVs ;AN000;
;� ;AN000;
;� ;AN000;
;� CONVENTIONS: ;AN000;
;� ;AN000;
;� ;AN000;
;� ;AN000;
;� ASSUMPTIONS: All the input are valid. The parm_list entry past the last one ;AN000;
;� has a parm_type of bogus. ;AN000;
;� ;AN000;
;� The lines and columns values are in binary for request_type= ;AN000;
;� set_con_features ;AN000;
;� ;AN000;
;� The codepage numbers were put into des_start_packet. ;AN000;
;� ;AN000;
;� ;AN000;
;� ;AN000;
;� ;AN000;
;� SIDE EFFECT: ;AN000;
;� ;AN000;
;� ;AN000;
;������������������������������������������������������������������������������� ;AN000;
;AN000;
analyze_and_invoke PROC NEAR ;AX000; ;AN000;
;AN000;
;AN000;
;CASE request_type= ;AN000;
;AN000;
MOV cp_cb.des_pack_ptr,OFFSET des_start_packet ;AX000;In case a codepage request ;AN000;
;AN000;
MOV DI,0 ;initialize index into the list of parsed parameters ;AN000;
;AN000;
;calculate the displacement for the jump to the jump ;AN000;
MOV parm_list_holder,BX ;save parm_list_BX ;AN000;
XOR BX,BX ;AX000; ;AN000;
MOV BL,max_request_type ;AX000; ;AN000;
SUB BL,request_type ;AX000;see the list of equates for request_type ;AN000;
SHL BX,1 ;AX000;BX=word displacement into jump table ;AN000;
JMP jump_table1[BX] ;AX000;jump to appropriate jump ;AN000;
;AN000;
jump_table1 LABEL WORD ;the order of the following entries is critical ;AN000;
;AN000;
DW OFFSET all_con_status_case ;AN000;
DW OFFSET codepage_prepare_case ;AN000;
DW OFFSET codepage_refresh_case ;AN000;
DW OFFSET codepage_select_case ;AN000;
DW OFFSET codepage_status_case ;AN000;
DW OFFSET codepage_prepared_status_case ;AN000;
DW OFFSET codepage_selected_status_case ;AN000;
DW OFFSET com_status_case ;AN000;
DW OFFSET initialize_com_port_case ;AN000;
DW OFFSET initialize_printer_port_case ;AN000;
DW OFFSET old_initialize_printer_port_case ;AN000;
DW OFFSET old_video_mode_set_case ;AN000;
DW OFFSET printer_reroute_case ;AN000;
DW OFFSET printer_status_case ;AN000;
DW OFFSET set_con_features_case ;AN000;
DW OFFSET status_for_everything_case ;AN000;
DW OFFSET turn_off_reroute_case ;AN000;
;AN000;
;AN000;
all_con_status_case: ;know that all con status is requested ;AN000;
;AN000;
;AN000;
MOV stat_dev_ptr,OFFSET CON_str ;set up msg ser input ;AN000;
MOV dev_name_size,len_CON_str ;set up for msg service, see MODEPARS.ASM ;AN000;
display status_for_device ;AN000;
display long_underline ;Status for device CON: ;AN000;
display four_char_underline ;---------------------- ;AN000;
;AN000;
CAll check_ANSI_installed ;see if ANSI.SYS is installed ;AC001;
.IF <ANSI_installed EQ true> THEN ;IF can get info on settings THEN display them ELSE don't display them
CALL display_columns_status ;AN000;
CALL display_lines_status ;AN000;
.ENDIF ;AC001;
MOV cp_cb.request_typ,status ;set up variables for modecp ;AN000;
MOV cp_cb.cp_device,OFFSET CON_str ;AN000;
;AN000;
CALL modecp ;display codepage status ;AN000;
;AN000;
BREAK 0 ;AN000;
;AN000;
;AN000;
codepage_prepare_case: ;AN000;
;AN000;
MOV cp_cb.request_typ,prepare ;AN000;
CALL setup_device_name ;Set the pointer to the device name ASCIIZ in the parameter block for 'modecp'. ;AN000;
;AN000;
call modecp ;AN000;
;AN000;
BREAK 0 ;AN000;
;AN000;
;AN000;
codepage_refresh_case: ;AN000;
;AN000;
MOV cp_cb.request_typ,refresh ;AN000;
CALL setup_device_name ;Set the pointer to the device name ASCIIZ in the parameter block for 'modecp'. ;AN000;
;AN000;
call modecp ;AN000;
;AN000;
BREAK 0 ;AN000;
;AN000;
;AN000;
;AN000;
codepage_select_case: ;AN000;
;AN000;
MOV cp_cb.request_typ,select ;AN000;
CALL setup_device_name ;Set the pointer to the device name ASCIIZ in the parameter block for 'modecp'. ;AN000;
MOV des_start_packet.des_strt_pknum,1 ;one cp number ;AN000;
MOV des_start_packet.des_strt_pklen,4 ;bytes for count (word) and one number (word) ;AN000;
MOV BX,parm_list_holder ;restore parm_list_BX ;AN000;
MOV DI,codepage_index_holder ;DI=index in parm list of the entry for the codepage to be selected;AN000;
MOV AX,parm_list_BX[DI].value1 ;AX=codepage number in binary form ;AN000;
MOV des_start_packet.des_strt_pkcp1,AX ;setup parm block with the (single) cp number ;AN000;
;AN000;
CALL modecp ;AN000;
;AN000;
BREAK 0 ;AN000;
;AN000;
;AN000;
codepage_status_case: ;AN000;
codepage_prepared_status_case: ;AN000;
codepage_selected_status_case: ;AN000;
;AN000;
MOV cp_cb.request_typ,status ;AN000;
CALL setup_device_name ;Set the pointer to the device name ASCIIZ in the parameter block for 'modecp'. ;AN000;
;AN000;
CALL modecp ;AN000;
;AN000;
BREAK 0 ;AN000;
;AN000;
;AN000;
com_status_case: ;AN000;
;AN000;
; INPUT: device_type = COMx
; device = ASCII COM number
CALL check_com_ports_attached ;return number of com ports in com_ports_attached ;AN000;
;AN000;
.IF <device_name EQ <OFFSET COM1_str>> AND ;AN000;
.IF <com_ports_attached GE 1> THEN ;COM1 exists
MOV BL,COM1 ;AN000;
MOV stat_dev_ptr,OFFSET COM1_str ;set up msg ser input ;AN000;
MOV device_request,com1_retry_type_status ;AN000;
.ELSEIF <device_name EQ <OFFSET COM2_str>> AND ;AN000;
.IF <com_ports_attached GE 2> THEN ;COM2 exists
MOV BL,COM2 ;AN000;
MOV stat_dev_ptr,OFFSET COM2_str ;set up msg ser input ;AN000;
MOV device_request,com2_retry_type_status ;AN000;
.ELSEIF <device_name EQ <OFFSET COM3_str>> AND ;AN000;
.IF <com_ports_attached GE 3> THEN ;COM3 exists
MOV BL,COM3 ;AN000;
MOV stat_dev_ptr,OFFSET COM3_str ;set up msg ser input ;AN000;
MOV device_request,com3_retry_type_status ;AN000;
.ELSEIF <device_name EQ <OFFSET COM4_str>> AND ;AN000;
.IF <com_ports_attached EQ 4> THEN ;COM4 exists
MOV BL,COM4 ;AN000;
MOV stat_dev_ptr,OFFSET COM4_str ;set up msg ser input ;AN000;
MOV device_request,com4_retry_type_status ;AN000;
.ELSE ;device does not exist ;AN000;
MOV CX,device_name ;AN000; ;AN000;
MOV illegal_device_ptr,CX ;put pointer to com port string in message ;AN000;
DISPLAY err1 ;AN000;"Illegal device name - COMX" ;AN000;
MOV noerror,false ;set flag for displaying status to be skipped
.ENDIF ;AN000;
.IF <noerror EQ true> THEN
MOV dev_name_size,len_COMX_str ;set up for msg service, see MODEPARS.ASM ;AN000;
display status_for_device ;"Status for device COM?:" ;AN000;
display long_underline ;"------------------" ;AN000;
display five_char_underline ;has CRLF on it "-----" ;AN000;
call get_device_retry_type ;AN000;
display retry_equal ;AN000;
.ENDIF
;AN000;
BREAK 0 ;AN000;
;AN000;
;AN000;
; con_status_case: ;don't know which con status is requested ;AN000;
;AN000;
; MOV request_type,all_con_status ;AC000;DCR76 ;AN000;
; CALL analyze_and_invoke ;AC000;DCR76 ;AN000;
;AN000;
; MOV dev_name_size,len_CON_str ;set up for msg service, see MODEPARS.ASM ;AN000;
; MOV stat_dev_ptr,OFFSET CON_str ;set up msg ser input ;AN000;
; display status_for_device ;AN000;
; display long_underline ;Status for device CON: ;AN000;
; display four_char_underline ;---------------------- ;AN000;
; ;AN000;
; MOV DI,0 ;AN000;
; ;AN000;
; .WHILE <parm_list_BX[DI].parm_type NE bogus> DO ;the entry after the last has parm_type of bogus ;AN000;
; ;AN000;
; ;CASE parm_list_BX[DI].item_tag= ;AN000;
; ;AN000;
; ;CODEPAGE, ;AN000;
; ;PREPARE, ;AN000;
; ;SELECT: ;AN000;
; ;AN000;
; .IF <parm_list_BX[DI].item_tag EQ CODEPAGE_item_tag> OR ;AN000;
; .IF <parm_list_BX[DI].item_tag EQ SELECT_item_tag> OR ;AN000;
; .IF <parm_list_BX[DI].item_tag EQ PREPARE_item_tag> THEN ;AN000;
; ;AN000;
; MOV cp_cb.request_typ,status ;AN000;
; MOV cp_cb.cp_device,OFFSET CON_str ;AN000;
; CALL modecp ;display codepage status ;AN000;
; ;AN000;
; BREAK 2 ;AN000;
; ;AN000;
; .ENDIF ;AN000;
; ;AN000;
; ;BLINK: ;AN000;
; ;AN000;
; .IF <parm_list_BX[DI].item_tag EQ BLINK_item_tag> THEN ;AN000;
; ;AN000;
; CALL display_blink_status ;AN000;
; ;AN000;
; BREAK 2 ;AN000;
; ;AN000;
; .ENDIF ;AN000;
; ;AN000;
; ;AN000;
; ;COLUMNS: ;AN000;
; ;AN000;
; .IF <parm_list_BX[DI].item_tag EQ COLUMNS_item_tag> THEN ;AN000;
; ;AN000;
; CALL display_COLUMNS_status ;AN000;
; ;AN000;
; BREAK 2 ;AN000;
; ;AN000;
; .ENDIF ;AN000;
; ;AN000;
; ;AN000;
; ;LINES: ;AN000;
; ;AN000;
; .IF <parm_list_BX[DI].item_tag EQ LINES_item_tag> THEN ;AN000;
; ;AN000;
; CALL display_lines_status ;AN000;
; ;AN000;
; BREAK 2 ;AN000;
; ;AN000;
; .ENDIF ;AN000;
; ;AN000;
; ENDCASE_2: ;AN000;
; ;AN000;
; ADD DI,TYPE parm_list_entry ;AN000;
; ;AN000;
; .ENDWHILE ;AN000;
;AN000;
; BREAK 0 ;AN000;
;AN000;
;AN000;
;AN000;
initialize_com_port_case: ;AN000;
;AN000;
MOV BX,parm_list_holder ;restore parm_list_BX ;AN000;
.IF <parms_form EQ keyword> THEN ;IF the parms were input as keywords THEN ;AN000;
;AN000;
MOV DI,TYPE parm_list_entry ;skip COMN parm ;AN000;
;AN000;
.WHILE <parm_list_BX[DI].parm_type NE bogus> DO NEAR ;the entry after the last has parm_type of bogus ;AN000;
;AN000;
;CASE parm_list_BX[DI].keyword_switch_ptr= ;AN000;
;AN000;
;BAUD_equal: ;AN000;
;AN000;
.IF <parm_list_BX[DI].keyword_switch_ptr EQ <OFFSET BAUD_equal>> THEN ;AN000;
;AN000;
MOV AX,parm_list_BX[DI].value1 ;AX= pointer to the baud rate string ;AN000;
MOV pbaud_ptr,AX ;set pointer to the baud rate string in the messge ;AN000;
MOV baud_index,DI ;set index into parm list for setcom ;AN000;
BREAK 3 ;AN000;
;AN000;
.ENDIF ;AN000;
;AN000;
;AN000;
;PARITY_equal: ;AN000;
;AN000;
.IF <parm_list_BX[DI].keyword_switch_ptr EQ <OFFSET PARITY_equal>> THEN ;AN000;
;AN000;
MOV SI,parm_list_BX[DI].value1 ;AX= pointer to the parity string ;AN000;
MOV pparity_ptr,SI ;set pointer to the parity string in the messge ;AN000;
OR BYTE PTR [SI],lowercase ;convert to lowercase for compatibility with previous versions
MOV parity_index,DI ;set index into parm list for setcom ;AN000;
BREAK 3 ;AN000;
;AN000;
.ENDIF ;AN000;
;AN000;
;AN000;
;DATA_equal: ;AN000;
;AN000;
.IF <parm_list_BX[DI].keyword_switch_ptr EQ <OFFSET DATA_equal>> THEN ;AN000;
;AN000;
MOV BP,parm_list_BX[DI].value1 ;BP= pointer to the data bits string ;AN000;
MOV AL,[BP] ;AL= data bits character ;AN000;
MOV pdata,AL ;set the data bits string in the messge ;AN000;
MOV data_bits_index,DI ;set index into parm list for setcom ;AN000;
BREAK 3 ;AN000;
;AN000;
.ENDIF ;AN000;
;AN000;
;AN000;
;STOP_equal: ;AN000;
;AN000;
.IF <parm_list_BX[DI].keyword_switch_ptr EQ <OFFSET STOP_equal>> THEN ;AN000;
;AN000;
MOV AX,parm_list_BX[DI].value1 ;AX= pointer to the stop bit string ;AN000;
MOV pstop_ptr,AX ;set pointer to the parity string in the messge ;AN000;
MOV stop_bits_index,DI ;set index into parm list for setcom ;AN000;
BREAK 3 ;AN000;
;AN000;
.ENDIF ;AN000;
;AN000;
;AN000;
;RETRY_equal: ;AN000;
;AN000;
.IF <parm_list_BX[DI].keyword_switch_ptr EQ <OFFSET RETRY_equal_str>> THEN ;AN000;
;AN000;
MOV retry_index,DI ;indicate to modecom which parm is retry ;AN000;
; BREAK 3 ;AN000;
;AN000;
.ENDIF ;AN000;
;AN000;
;AN000;
ENDCASE_3: ;AN000;
;AN000;
ADD DI,TYPE parm_list_entry ;AN000;
;AN000;
;AN000;
.ENDWHILE ;AN000;
;AN000;
.ELSE ;the parms were entered as positionals (the old form) ;AN000;
;AN000;
MOV baud_index,TYPE parm_list_entry ;AN000;
MOV DI,2 * (TYPE parm_list_entry) ;AN000;
.IF <parm_list_BX[DI].item_tag NE unspecified> THEN ;AN000;IF stopbits requested THEN
MOV parity_index,DI ;AN000;
.ENDIF
MOV DI,3 * (TYPE parm_list_entry) ;AN000;
.IF <parm_list_BX[DI].item_tag NE unspecified> THEN ;AN000;IF stopbits requested THEN
MOV data_bits_index,DI ;AN000;
.ENDIF
MOV DI,4 * (TYPE parm_list_entry) ;DI=stopbits index ;AN000;
.IF <parm_list_BX[DI].item_tag NE unspecified> THEN ;AN000;IF stopbits requested THEN
MOV stop_bits_index,DI ;AN000;
.ENDIF
MOV DI,5 * (TYPE parm_list_entry) ;AN000;DI=index of retry parm
.IF <parm_list_BX[DI].item_tag NE unspecified> THEN ;AN000;IF retry requested THEN
MOV retry_index,DI ;AN000;set up index for modecom
.ENDIF ;AN000;
;AN000;
.ENDIF ;AN000;
;AN000;
CALL modecom ;AN000;
;AN000;
BREAK 0 ;AN000;
;AN000;
;AN000;
old_initialize_printer_port_case: ;Assume that parms not specified have an entry in parm_list that is in initial state;AN000;
;printer_no has ASCII form of printer number ;AN000;
;need to put binary form of columns in columns_holder (80 or 132) ;AN000;
;need to put "6" or "8" in parm2 ;AN000;
;need to set retry_index ;AN000;
PUBLIC old_initialize_printer_port_case
MOV BX,parm_list_holder ;restore parm_list_BX ;AN000;
MOV DI,TYPE parm_list_entry ;skip LPTN parm, point at chars per line ;AN000;
.IF <parm_list_BX[DI].item_tag EQ onethirtytwo_item_tag> THEN ;AN000;
MOV columns_holder,132 ;AN000;
.ELSEIF <parm_list_BX[DI].item_tag EQ eighty_item_tag> THEN ;AN000;
MOV columns_holder,80 ;AN000;
.ENDIF ;if not 80 or 132 modeprin assumes not specified, and makes no change;AN000;
ADD DI,TYPE parm_list_entry ;look at lines per inch ;AN000;
.IF <parm_list_BX[DI].item_tag NE unspecified> THEN ;IF chars per line specified THEN ;AN000;
MOV SI,parm_list_BX[DI].value1 ;SI=>"6" or "8" ;AN000;
MOV AL,BYTE PTR DS:[SI] ;AN000;
MOV parm2,AL ;parm2="6" or "8" ;AN000;
.ENDIF ;otherwise leave parm2=0FFH (unspecified) ;AN000;
ADD DI,TYPE parm_list_entry ;look at retry request ;AN000;
.IF <parm_list_BX[DI].item_tag NE unspecified> THEN ;AN000;
MOV retry_index,DI ;AN000;let modeprin know retry was requested and the index of it.
.ENDIF ;AN000;
CALL modeecno ;AN000;
CALL modeprin ;AN000;
;AN000;
BREAK 0 ;AN000;
initialize_printer_port_case: ;printer_no has ASCII form of printer number ;AN000;
;need to put binary form of columns in columns_holder (80 or 132) ;AN000;
;need to put "6" or "8" in parm2 ;AN000;
;need to set retry_index ;AN000;
;AN000;
MOV BX,parm_list_holder ;restore parm_list_BX ;AN000;
MOV DI,TYPE parm_list_entry ;skip LPTN parm ;AN000;
.WHILE <parm_list_BX[DI].parm_type NE bogus> DO ;the entry after the last has parm_type of bogus ;AN000;
;AN000;
;CASE parm_list_BX[DI].keyword_switch_ptr= ;AN000;
;AN000;
;AN000;
;LINES_equal: ;AN000;
;AN000;
.IF <parm_list_BX[DI].keyword_switch_ptr EQ <OFFSET LINES_equal>> THEN ;AN000;
;AN000;
MOV SI,parm_list_BX[DI].value1 ;SI=>"6" or "8" ;AN000;
MOV AL,BYTE PTR DS:[SI] ;AN000;
MOV parm2,AL ;parm2="6" or "8" ;AN000;
BREAK 4 ;AN000;
;AN000;
.ENDIF ;AN000;
;AN000;
;AN000;
;COLUMNS_equal: ;AN000;
;AN000;
.IF <parm_list_BX[DI].keyword_switch_ptr EQ <OFFSET COLUMNS_equal>> OR ;AN000;
.IF <parm_list_BX[DI].keyword_switch_ptr EQ <OFFSET COLS_equal>> THEN ;AN000;
;AN000;
.IF <parm_list_BX[DI].item_tag EQ onethirtytwo_item_tag> THEN ;AN000;
MOV columns_holder,132 ;AN000;
.ELSE ;AN000;
MOV columns_holder,80 ;AN000;
.ENDIF ;AN000;
BREAK 4 ;AN000;
;AN000;
.ENDIF ;AN000;
;AN000;
;AN000;
;RETRY_equal: ;AN000;
;AN000;
.IF <parm_list_BX[DI].keyword_switch_ptr EQ <OFFSET RETRY_equal_str>> THEN ;AN000;
MOV retry_index,DI ;AN664;
BREAK 4 ;AN000;
;AN000;
.ENDIF ;AN000;
;AN000;
;AN000;
ENDCASE_4: ;AN000;
;AN000;
ADD DI,TYPE parm_list_entry ;AN000;
;AN000;
;AN000;
.ENDWHILE ;AN000;
CALL modeecno ;turn of rerouting ;AN000;
CALL modeprin ;AN000;
;AN000;
BREAK 0 ;AN000;
;AN000;
;AN000;
;AN000;
;AN000;
old_video_mode_set_case: ;AN000;
;AN000;
PUBLIC old_video_mode_set_case ;AN000;
;AN000;
;AN000;
;first see if ANSI.SYS is loaded ;AN000;
CALL check_ANSI_installed ;AC001;
.IF <ANSI_installed EQ true> THEN ;AC001;
MOV CL,get_current_settings ;AN000;
PUSH BX ;save parm_list ;AN000;
CALL do_IOCTL0C ;get current settings of CON ;AN000;
POP BX ;restore parm_list ;AN000;
MOV IOCTL0C_data_block.mode,text ;AN000;
.ENDIF ;AN000;ANSI installed ;AN000;
MOV BX,parm_list_holder ;restore parm_list_BX ;AN000;
PUSH DI ;save parm list index ;AN000;
.IF <parm_list_BX[DI].item_tag NE unspecified> THEN
.IF <parm_list_BX[DI].item_tag EQ BW40_item_tag> THEN ;IF BW40 REQUESTED ;AN000;
CALL BW40 ;AN000;
.ELSEIF <parm_list_BX[DI].item_tag EQ BW80_item_tag> THEN ;IF BW80 REQUESTED ;AN000;
CALL BW80 ;AN000;
.ELSEIF <parm_list_BX[DI].item_tag EQ CO40_item_tag> THEN ;IF CO40 REQUESTED ;AN000;
CALL CO40 ;AN000;
.ELSEIF <parm_list_BX[DI].item_tag EQ CO80_item_tag> THEN ;IF CO80 REQUESTED ;AN000;
CALL CO80 ;AN000;
.ELSEIF <parm_list_BX[DI].item_tag EQ MONO_item_tag> THEN ;IF MONO REQUESTED ;AN000;
CALL MONO ;AN000;
.ELSE ;AN000;
.IF <ANSI_installed EQ true> THEN ;AN000;
;AC004; MOV need_IOCTL0C,true ;use IOCTL if possible to retain lines setting ;AN000;
.IF <parm_list_BX[DI].value1 EQ <OFFSET fourty_str>> THEN ;AN000;
MOV IOCTL0C_data_block.cols,40 ;setup IOCTL input block with the columns requested ;AN000;
.ELSE
MOV IOCTL0C_data_block.cols,80 ;setup IOCTL input block with the columns requested ;AN000;
.ENDIF ;AN000;
CALL old_video_mode_set_IOCTL ;AN004;use IOCTL if possible to retain lines setting ;AN000;
.ELSE
.IF <parm_list_BX[DI].item_tag EQ fourty_item_tag> THEN ;IF 40 REQUESTED ;AN000;
MOV BL,40 ;set up for handle_40_or_80 ;AN000;
.ELSE ;AN000;
MOV BL,80 ;set up for handle_40_or_80 ;AN000;
.ENDIF ;AN000;
CALL HANDLE_40_OR_80 ;AN000;
.ENDIF
.ENDIF ;AN000;
.ENDIF
dummy9:
PUBLIC dummy9
;AN000;
POP DI ;restore parm list index ;AN000;
.IF <NOERROR EQ TRUE> AND ;process ,r � l,[T] ;AN000;
MOV BX,parm_list_holder ;restore parm_list_BX ;AN000;
ADD DI,TYPE parm_list_entry ;process second parm, shift direction ;AN000;
.IF <parm_list_BX[DI].item_tag NE unspecified> THEN ;AN000;
.IF <parm_list_BX[DI].item_tag EQ R_item_tag> OR ;AN000;
.IF <parm_list_BX[DI].item_tag EQ L_item_tag> THEN ;AN000;
MOV CL,parm_list_BX[DI].item_tag ;AN000;
MOV PARM2,CL ;set up for SHIFT_SCREEN ;AN000;
ADD DI,TYPE parm_list_entry ;look at third parm ;AN000;
MOV CL,parm_list_BX[DI].item_tag ;CL=T_item_tag or bogus ;AN000;
MOV PARM3,CL ;may be bogus, but shift_screen will handle it correctly ;AN000;
CALL SHIFT_SCREEN ;AN000;
.ELSE ;AN000;must be a rows value
.IF <ANSI_installed EQ true> THEN ;AN000;
;AC004; MOV need_IOCTL0C,true ;use IOCTL if possible to retain lines setting ;AN000;
MOV DX,parm_list_BX[DI].value1 ;AN000;
MOV IOCTL0C_data_block.rows,DX ;the IOCTL input block has the columns requested ;AN000;
CALL old_video_mode_set_IOCTL ;AN004;use IOCTL if possible to retain lines setting ;AN000;
.ELSE ;AN000;ANSI not installed ;AN000;
DISPLAY ANSI_not_loaded ;AN000;
MOV noerror,false ;AN000;
.ENDIF ;AN000;ANSI installed ;AN000;
.ENDIF ;AN000;
.ENDIF ;AN000;
;AN000;
BREAK 0 ;AN000;
;AN000;
PUBLIC printer_reroute_case
;AN000;
printer_reroute_case:
;INPUT:lptno=zero based printer number OUTPUT:;AH=printer number mask: lpt1=1, lpt2=2, lpt3=4 ;AN000;
;device=COM number in ASCII form ;SI=printer number value (one based) ;AN000;
;AL=com number character ;AN000;
XOR CX,CX
MOV CL,lptno ;lptno always <= 255
MOV SI,CX ;SI=zero based printer number (0, 1, or 2) ;AN000;
INC SI ;SI=one based printer number (1, 2, or 3) ;AN000;
MOV AH,1 ;AN000;
SAL AH,CL ;AH=2**SI,AH=printer number mask for MODEECHO ;AN000;
MOV DH,CL
ADD DH,ASCII_1 ;DH=ASCII printer number ;AN000;
MOV AL,device ;AL=ASCII form of com device number ;AN000;
MOV REDPT,DH ;PUT n OF LPTn IN REDIRECT MESSAGE
MOV NOTREDPT,DH ;AND INTO NOT REDIRECTED MSG
CALL modeecho ;AN000;
;AN000;
BREAK 0 ;AN000;
;AN000;
;AN000;
;AN000;
printer_status_case: ;AN000;
PUBLIC printer_status_case
; INPUT: device_type = LPTx
; device = ASCII printer number
; lptno = ASCII printer number
; device_name = offset of printer string
;AN000;
MOV cp_cb.request_typ,status ;AN000;
MOV AX,device_name ;AN000;
MOV stat_dev_ptr,AX ;AC665;set up msg ser input ;AN000;
MOV dev_name_size,len_LPTX_str ;AN000;set up for msg service, see MODEPARS.ASM ;AN000;
MOV cp_cb.cp_device,AX ;AN665;set up for call to modecp ;AN000;
;AN000;
.IF <device_name EQ <OFFSET LPT1_str>> THEN ;AN000;
MOV device_request,lpt1_retry_type_status ;AN000;
MOV rerouted_printer_mask,LPT1
MOV redpt,"1" ;set up for reroute message
MOV notredpt,"1" ;set up for not rerouted message
.ELSEIF <device_name EQ <OFFSET LPT2_str>> THEN ;AN000;
MOV device_request,lpt2_retry_type_status ;AN000;
MOV rerouted_printer_mask,LPT2
MOV redpt,"2" ;set up for reroute message
MOV notredpt,"2" ;set up for not rerouted message
.ELSEIF <device_name EQ <OFFSET LPT3_str>> THEN ;AN000;
MOV device_request,lpt3_retry_type_status ;AN000;
MOV rerouted_printer_mask,LPT3
MOV redpt,"3" ;set up for reroute message
MOV notredpt,"3" ;set up for not rerouted message
.ENDIF ;AN000;
;AN000;
PUSH ES ;save ES, used in MODECP ;AC002;
;AC002;PUSH AX ;AN000;save
;AN000;
display status_for_device ;AN000;
display long_underline "Status for device LPTX?" ;AN000;
display five_char_underline ;has CRLF on it ----------------------- ;AN000;
call display_printer_reroute_status ;see modeecho.asm ;AN000;
;AC002;POP AX ;restore "device_request" ;AN000;
XOR CX,CX ;initialize prn_ports_attached ;AN000;
CALL check_prn_ports_attached ;return number of printer cards in prn_ports_attached ;AN000;
POP ES ;restore ES ;AC002;
ADD prn_ports_attached,ASCII_0 ;CX=ASCII form of last printer number ;AN000;
.IF <prn_ports_attached GE redpt> THEN ;IF the printer exists THEN ;AN000;
call get_device_retry_type ;AN000;
display retry_equal ;AN000;
CALL modecp ;display codepage status ;AN000;
.ENDIF ;AN000;
;AN000;
BREAK 0 ;AN000;
;AN000;
;m ;AN000;
set_con_features_case: ;the command line was nothing but con keywords ;AN000;
;AN000;
;first see if ANSI.SYS is loaded ;AN000;
CALL check_ANSI_installed ;AC001;
.IF <ANSI_installed EQ true> THEN ;AC001;
MOV CL,get_current_settings ;AN000;
CALL do_IOCTL0C ;get current settings of CON ;AN000;
;MOV SI,OFFSET IOCTL0C_data_block ;set up IOCTL0C, addressablitiy to the IOCTL data block ;AN000;
;AN000;
MOV IOCTL0C_data_block.mode,text ;AN000;
;AN000;
.ENDIF ;ANSI.SYS installed ;AN000;
;AN000;
MOV BX,parm_list_holder ;restore parm_list_BX ;AN000;
ADD DI,TYPE parm_list_entry ;skip CON parm ;AN000;
.WHILE <parm_list_BX[DI].parm_type NE bogus> DO NEAR ;the entry after the last has parm_type of bogus ;AN000;
;AN000;
;CASE parm_list_BX[DI].keyword_switch_ptr= ;AN000;
;AN000;
;AN000;
;LINES_equal: ;AN000;
;AN000;
.IF <parm_list_BX[DI].keyword_switch_ptr EQ <OFFSET LINES_equal>> THEN ;AN000;
;AN000;
MOV DX,parm_list_BX[DI].value1 ;AN000;
MOV IOCTL0C_data_block.rows,DX ;the IOCTL input block has the columns requested ;AN000;
MOV need_IOCTL0C,true ;AN000;
BREAK 1 ;AN000;
;AN000;
.ENDIF ;AN000;
;AN000;
;AN000;
;COLUMNS_equal: ;the value is binary ;AN000;
;AN000;
.IF <parm_list_BX[DI].keyword_switch_ptr EQ <OFFSET COLUMNS_equal>> OR ;AN000;
.IF <parm_list_BX[DI].keyword_switch_ptr EQ <OFFSET COLS_equal>> THEN ;AN000;
;AN000;
.IF <ANSI_installed EQ true> THEN ;AN000;
MOV need_IOCTL0C,true ;use IOCTL if possible to retain lines setting ;AN000;
MOV DX,parm_list_BX[DI].value1 ;AN000;
MOV IOCTL0C_data_block.cols,DX ;the IOCTL input block has the columns requested ;AN000;
.ELSE
.IF <parm_list_BX[DI].item_tag EQ fourty_item_tag> THEN ;IF 40 REQUESTED ;AN000;
MOV columns_specified,40 ;set up for handle_40_or_80 ;AN000;
.ELSE ;AN000;
MOV columns_specified,80 ;set up for handle_40_or_80 ;AN000;
.ENDIF ;AN000;
.ENDIF
BREAK 1 ;AN000;
;AN000;
.ENDIF ;AN000;
;AN000;
;AN000;
;RATE_equal: ;AN000;
;AN000;
.IF <parm_list_BX[DI].keyword_switch_ptr EQ <OFFSET RATE_equal>> THEN ;AN000;
;AN000;
MOV AL,BYTE PTR parm_list_BX[DI].value1 ;save the rate requested in binary form, always <255 ;AN000;
MOV rate_holder,AL ;AN000;
MOV need_typamat_call,true ;AN000;
BREAK 1 ;AN000;
;AN000;
.ENDIF ;AN000;
;AN000;
;AN000;
;DELAY_equal: ;AN000;
;AN000;
.IF <parm_list_BX[DI].keyword_switch_ptr EQ <OFFSET DELAY_equal>> OR ;AN000;
.IF <parm_list_BX[DI].keyword_switch_ptr EQ <OFFSET DEL_equal>> THEN ;AN000;
;AN000;
MOV AL,BYTE PTR parm_list_BX[DI].value1 ;save delay requested (binary), always <255 ;AN000;
MOV delay_holder,AL ;AN000;
MOV need_typamat_call,true ;AN000;
BREAK 1 ;AN000;
;AN000;
.ENDIF ;AN000;
;AN000;
ENDCASE_1: ;AN000;
;AN000;
ADD DI,TYPE parm_list_entry ;address next parm ;AN000;
;AN000;
.ENDWHILE ;AN000;
;AN000;
DUMMY3: ;AN000;
PUBLIC DUMMY3 ;AN000;
;AN000;
.IF <need_IOCTL0C EQ true> THEN ;AN000;
.IF <ANSI_installed EQ true> THEN ;AN000;
MOV CL,set_display_characteristics ;AN000;
CALL do_IOCTL0C ;AN000;
.IF C THEN ;AN000;
get_extended_error ;AN000;
.IF <AX EQ not_supported_on_machine> THEN ;AN000;
DISPLAY Function_not_supported ;AN000;
.ELSEIF <AX EQ font_not_loaded> THEN ;AN000;
DISPLAY Required_font_not_loaded ;AN000;
.ENDIF ;AN000;
MOV noerror,false ;AN000;
.ENDIF ;AN000;
.ELSE ;AN000;
DISPLAY ANSI_not_loaded ;AN000;
MOV noerror,false ;AN000;
.ENDIF ;AN000;
.ELSEIF <columns_specified NE false> THEN ;AN000;
MOV BL,columns_specified ;set up for call to handle_40_or_80 ;AN000;
CALL HANDLE_40_OR_80 ;AN000;
.ENDIF ;AN000;
.IF <need_typamat_call EQ true> THEN ;AN000;
MOV BL,rate_holder ;AN000;
MOV BH,delay_holder ;AN000;
CALL typamat ;AN000;
.ENDIF ;AN000;
;AN000;
BREAK 0 ;AN000;
;AN000;
;AN000;
status_for_everything_case: ;AN000;
;AN000;
MOV request_type,printer_status ;status routine for printers ;AN000;
MOV device_name,OFFSET LPT1_str ;will display the reroute ;AN000;
CALL analyze_and_invoke ;status for the printer whether ;AN000;
MOV device_name,OFFSET LPT2_str ;it exists or not, so call for ;AN000;
CALL analyze_and_invoke ;all of them ;AN000;
MOV device_name,OFFSET LPT3_str ;AN000;
CALL analyze_and_invoke ;AN000;
;AN000;
MOV request_type,all_con_status ;AN000;
CALL analyze_and_invoke ;AN000;
CALL check_com_ports_attached ;return number of com ports in com_ports_attached ;AN000;
MOV request_type,com_status ;AN000;
MOV CL,com_ports_attached ;AN000;
.FOR i = 1 TO CL ;AN000;
.SELECT ;AN000;
.WHEN <i EQ 1> ;AN000;
MOV device_name,OFFSET COM1_str ;AN000; ;AN000;
.WHEN <i EQ 2> ;AN000;
MOV device_name,OFFSET COM2_str ;AN000;
.WHEN <i EQ 3> ;AN000;
MOV device_name,OFFSET COM3_str ;AN000;
.WHEN <i EQ 4> ;AN000;
MOV device_name,OFFSET COM4_str ;AN0;AN000;
.ENDSELECT ;AN000;
CALL analyze_and_invoke ;AN000; ;AN000;
.NEXT i ;AN000;
BREAK 0 ;AN000;
turn_off_reroute_case: ;user specified only LPTx[:] ;AN000;
;INPUT:lptno=ASCII printer number
CALL modeecno ;turn off rerouting ;AN000;
XOR CX,CX ;initialize prn_ports_attached
CALL check_prn_ports_attached ;return number of printer cards in prn_ports_attached
ADD prn_ports_attached,ASCII_0 ;CX=ASCII form of last printer number
.IF <prn_ports_attached GE LPTNO> THEN ;IF the printer exists THEN
CALL set_retry_type ;turn off infinit retry ;AN000;
CALL modify_resident_code ;modify resident code to reflect retry turned off ;AN000;
.ENDIF
BREAK 0 ;AN000;
;AN000;
ENDCASE_0: ;AN000;
;AN000;
RET ;AN000;
;AN000;
analyze_and_invoke ENDP ;AN000;
;AN000;
;AN000;
PRINTF_CODE ENDS ;AN000;
END ;AN000;
|