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
|
PAGE 60,132 ;
TITLE DEBMES.SAL - DEBUGGER MESSAGES PC DOS
IF1
%OUT COMPONENT=DEBUG, MODULE=DEBMES
ENDIF
;******************* START OF SPECIFICATIONS *****************************
;
; MODULE NAME:DEBMES.SAL
;
; DESCRIPTIVE NAME: SUPPLIES APPLICABLE MESSAGES TO DEBUG.ASM
;
; FUNCTION: THIS ROUTINE PROVIDES A MEANS BY WHICH MESSAGES MAY BE
; OUTPUT FOR DEBUG. THIS IS HANDLED THROUGH THE MESSAGE
; RETRIEVER FUNCTION SYSDISPMSG. TO
; FACILITATE MIGRATION AWAY FROM THE PRINTF UTILITY
; THE INTERFACE FOR INVOKING MESSAGES HAS REMAINED THE SAME.
; THIS IS ACCOMPLISHED THROUGH THE USE OF MACROS AND TABLES.
; EACH MESSAGE HAS A TABLE OF VALUES REQUIRED BY THE MESSAGE
; RETRIEVER UTILITIES. THE MACROS OPERATE ON THESE TABLES
; TO SUPPLY SYSDISPMSG WITH THE VALUES NECESSARY
; TO PRINT A MESSAGE.
;
; ENTRY POINT: PRINTF
;
; INPUT: PRINTF IS INVOKED AS IT HAS ALWAYS BEEN INVOKED. DX MUST
; POINT TO THE OFFSET OF A MESSAGE TABLE. THE TABLE POINTED TO
; BY DX CONTAINS ALL THE NECESSARY INFORMATION FOR THAT MESSAGE
; TO BE PRINTED.
;
; EXIT-NORMAL: NO CARRY
;
; EXIT-ERROR: CARRY SET - EITHER MESSAGE NOT FOUND OR UNABLE TO BE DISPLAYED
;
; INTERNAL REFERENCES:
;
; ROUTINE:DISP_MESSAGE - THIS MACRO IS USED TO DIPLAY A MESSAGE
; VIA SYSDISPMSG. IT TAKES AS INPUT A POINTER
; IN DX. THIS POINTER POINTS TO A TABLE OF
; VALUES FOR THE REQUESTED MESSAGE.
; DISP_MESSAGE OBTAINS THE VALUES IT NEEDS TO
; TO INVOKE SYSDISPMSG FROM THIS TABLE.
;
; EXTERNAL REFERENCES:
;
; ROUTINE: SYSMSG.INC - THIS ROUTINE IS SUPPLIED TO INTERFACE THE
; MESSAGE RETRIEVER SERVICES.
;
; NOTES: THIS MODULE SHOULD BE PROCESSED WITH THE SALUT PRE-PROCESSOR
; WITH OPTIONS "PR".
; LINK DEBUG+DEBCOM1+DEBCOM2+DEBCOM3+DEBASM+DEBUASM+DEBERR+DEBCONST+
; DEBDATA+DEBMES
;
; REVISION HISTORY:
;
; AN000 VERSION DOS 4.0 - MESSAGE RETRIEVER IMPLEMENTED. DMS:6/17/87
;
;
; COPYRIGHT: "MS DOS DEBUG Utility"
; "Version 4.00 (C) Copyright 1988 Microsoft"
; "Licensed Material - Property of Microsoft "
;
;******************** END OF SPECIFICATIONS ******************************
.xlist
include sysmsg.inc ;an000;message retriever
.list
msg_utilname <DEBUG> ;an000;DEBUG messages
;=========================================================================
;revised debmes.asm
;=========================================================================
fatal_error equ 45 ;fatal message handler error
unlim_width equ 00h ;unlimited output width
pad_blank equ 20h ;blank pad
pre_load equ 00h ;an000;normal pre-load
pad_zero equ 30h ;an000;zero pad
FALSE EQU 0
TRUE EQU NOT FALSE
;SYSVER EQU FALSE ;if true, i/o direct to bios
INCLUDE SYSVER.INC
;=========================================================================
; macro disp_message: the macro takes the message obtained in get_message
; and displays it to the applicable screen device.
;=========================================================================
disp_message macro tbl ;an000;display message macro
push si ;an000;save affected reg
push di ;an000;
push ax ;an000;
push bx ;an000;
push cx ;an000;
push dx ;an000;
push tbl ;an000;exchange tbl with si
pop si ;an000;
mov ax,[si] ;an000;move message number to ax
mov bx,[si+3] ;an000;display handle
mov cx,[si+7] ;an000;number of subs
mov dl,[si+9] ;an000;function type
mov di,[si+10] ;an000;input buffer if appl.
mov dh,[si+2] ;an000;message type
mov si,[si+5] ;an000;sublist
call sysdispmsg ;an000;display the message
pop dx ;an000;restore affected reg
pop cx ;an000;
pop bx ;an000;
pop ax ;an000;
pop di ;an000;
pop si ;an000;
endm ;an000;end macro disp_message
;=========================================================================
; macro disp_message: end macro
;=========================================================================
CODE SEGMENT PUBLIC BYTE
CODE ENDS
CONST SEGMENT PUBLIC BYTE
CONST ENDS
CSTACK SEGMENT STACK
CSTACK ENDS
DATA SEGMENT PUBLIC BYTE
DATA ENDS
DG GROUP CODE,CONST,CSTACK,DATA
code segment public byte ;an000;code segment
assume cs:dg,ds:dg,ss:dg,es:dg ;an000;
public printf ;an000;share printf
;; public disp_fatal ;an000;fatal error display
public pre_load_message ;an000;message pre load
.xlist
msg_services <MSGDATA>
.list
;=========================================================================
; include sysmsg.inc - message retriever services
;options selected:
; NEARmsg
; DISPLAYmsg
; LOADmsg
; INPUTmsg
; CHARmsg
; NUMmsg
; CLSAmsg
; CLSBmsg
; CLSCmsg
; CLSDmsg
;=========================================================================
.xlist
msg_services <LOADmsg> ;an000;load the messages
msg_services <DISPLAYmsg,CHARmsg,NUMmsg>;an000;get and display messages
msg_services <INPUTmsg> ;an000;input from keyboard
msg_services <DEBUG.CLA,DEBUG.CLB> ;an000;message types
msg_services <DEBUG.CLC,DEBUG.CLD> ;an000;
msg_services <DEBUG.CL1,DEBUG.CL2> ;an000;
.list
;=========================================================================
; printf: printf is a replacement of the printf procedure used in DOS
; releases prior 4.00. printf invokes the macros get_message and
; disp_message to invoke the new message handler. the interface
; into printf will continue to be a pointer to a message passed
; in DX. the pointer is pointing to more than a message now. it
; is pointing to a table for that message containing all relevant
; information for retieving and printing the message. the macros
; get_message and disp_message operate on these tables.
;=========================================================================
printf proc near ;an000;printf procedure
disp_message dx ;an000;display a message
;; $if c ;an000;if an error occurred
;; call disp_fatal ;an000;display the fatal error
;; $endif ;an000;
ret ;an000;return to caller
printf endp ;an000;end printf
;=========================================================================
; disp_fatal: this routine displays a fatal error message in the event
; an error occurred in disp_message.
;=========================================================================
;;disp_fatal proc near ;an000;fatal error message
;;
;; mov ax,fatal_error ;an000;fatal_error number
;; mov bx,stdout ;an000;print to console
;; mov cx,0 ;an000;no parameters
;; mov dl,no_input ;an000;no input will be coming
;; mov dh,UTILITY_MSG_CLASS ;an000;utility messages
;; call sysdispmsg ;an000;dispaly fatal error
;; ret ;an000;return to caller
;;
;;disp_fatal endp ;an000;end disp_fatal
;=========================================================================
; PRE_LOAD_MESSAGE : This routine provides access to the messages required
; by DEBUG. This routine will report if the load was
; successful. An unsuccessful load will cause DEBUG
; to terminate with an appropriate error message.
;
; Date : 6/15/87
;=========================================================================
PRE_LOAD_MESSAGE proc near ;an000;pre-load messages
call SYSLOADMSG ;an000;invoke loader
; $if c ;an000;if an error
JNC $$IF1
pushf ;an000;save flags
call SYSDISPMSG ;an000;let him say why
popf ;an000;restore flags
; $endif ;an000;
$$IF1:
ret ;an000;return to caller
PRE_LOAD_MESSAGE endp ;an000;end proc
include msgdcl.inc
code ends ;an000;end code segment
CONST SEGMENT PUBLIC BYTE
PUBLIC ENDMES_PTR,CRLF_PTR,NAMBAD_PTR
PUBLIC NOTFND_PTR,NOROOM_PTR,BADVER
PUBLIC NOSPACE_PTR,DRVLET
PUBLIC ACCMES_PTR,PROMPT_PTR
PUBLIC TOOBIG_PTR,SYNERR_PTR,BACMES_PTR
PUBLIC HEXERR_PTR,HEXWRT_PTR,WRTMES_PTR,EXEBAD_PTR,EXEWRT_PTR
PUBLIC EXECEMES_PTR, PARITYMES_PTR, NONAMESPEC_PTR
PUBLIC dr1_ptr,dr2_ptr,dr3_ptr,dr4_ptr ;ac000;new messages
PUBLIC CHANGE_FLAG_PTR,DF_ERROR,BF_ERROR,BR_ERROR,BP_ERROR
PUBLIC CONSTEND
;======================= TABLE STRUCTURE =================================
;
; byte 1 - message number of message to be displayed
; byte 2 - message type to be used, i.e.;class 1, utility, etc.
; byte 3 - display handle, i.e.; console, printer, etc.
; byte 4 - pointer to substitution list, if any.
; byte 6 - number of replaceable parameters, if any.
; byte 7 - type of input from keyboard, if any.
; byte 8 - pointer to buffer for keyboard input, if any.
;
;=========================================================================
IF SYSVER
PUBLIC BADDEV_PTR,BADLSTMES_PTR
baddev_ptr label word ;an000;"Bad device name",0
dw 0006 ;an000;message number 6
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
badlstmes_ptr label word ;an000;"Couldn't open list device
; PRN","Enter name of list
; device?"
dw 0007 ;an000;message number 7
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db DOS_KEYB_INP ;an000;keyboard input
dw 00 ;an000;no keyboard buffer
ENDIF
;================= REPLACEABLE PARAMETER SUBLIST STRUCTURE ===============
;
; byte 1 - substitution list size, always 11
; byte 2 - reserved for use by message handler
; byte 3 - pointer to parameter to be used as a substitution
; byte 7 - which parameter is this to replace, %1, %2, etc.
; byte 8 - determines how the parameter is to be output
; byte 9 - determines the maximum width of the parameter string
; byte 10 - determines the minimum width of the parameter string
; byte 11 - define what is to be used as a pad character
;
;=========================================================================
;=========================================================================
; replaceable parameter sublists
;=========================================================================
db_synerr_sub label dword ;an000;synerr parameters
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:arg_buf ;an000;point to argument buffer
db 01 ;an000;parameter one
db left_align+Char_field_ASCIIZ
;an000;left align/ASCIIZ/character
db unlim_width ;an000;unlimited width
db 00 ;an000;minimum width
db pad_blank ;an000;blank pad
db_change_sub label dword ;an000;synerr parameters
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:arg_buf ;an000;point to argument buffer
db 01 ;an000;parameter one
db left_align+Char_field_ASCIIZ
;an000;left align/ASCIIZ/character
db unlim_width ;an000;unlimited width
db 00 ;an000;minimum width
db pad_blank ;an000;blank pad
db_drive_error label dword ;an000;drive error parameters
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:drvlet ;an000;point to drive letter
db 01 ;an000;parameter one
db left_align+Char_field_ASCIIZ
;an000;left align/ASCIIZ/character
db 01 ;an000;1 byte
db 01 ;an000;1 byte
db pad_blank ;an000;blank pad
;=========================================================================
; end replaceable parameter sublists
;=========================================================================
crlf_ptr label word ;an000;13,10,0
dw 0008 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
bacmes_ptr label word ;an000;32,8,0
dw 0044 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
badver label word ;an000;"Incorrect DOS version"
dw 0001 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
endmes_ptr label word ;an000;13,10,"Program terminated
; normally",0
dw 0009 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
nambad_ptr label word ;an000;"Invalid drive specification",0
dw 0010 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
notfnd_ptr label word ;an000;"File not found",0
dw 0002 ;an000;message number
db Ext_Err_Class ;an000;extended error
dw stderr ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
noroom_ptr label word ;an000;"File creation error",0
dw 0012 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
nospace_ptr label word ;an000;"Insufficient space on disk",0
dw 0013 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
dr1_ptr label word ;an000;"Disk error reading drive %1"
dw 0014 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw dg:db_drive_error ;an000;sublist
dw 01 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
dr2_ptr label word ;an000;"Disk error writing drive %1"
dw 0015 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw dg:db_drive_error ;an000;sublist
dw 01 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
dr3_ptr label word ;an000;"Write protect error reading
; drive %1"
dw 0016 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw dg:db_drive_error ;an000;sublist
dw 01 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
dr4_ptr label word ;an000;"Write protect error writing
; drive %1"
dw 0017 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw dg:db_drive_error ;an000;sublist
dw 01 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
toobig_ptr label word ;an000;"Insufficient memory",0
dw 0008 ;an000;message number
db Ext_Err_Class ;an000;utility message
dw stderr ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
synerr_ptr label word ;an000;"%1^Error",0
dw 0019 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw dg:db_synerr_sub ;an000;sublist
dw 01 ;an000;1 sub - leading spaces
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
hexerr_ptr label word ;an000;"Error in EXE or HEX file",0
dw 0020 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
exebad_ptr label word ;an000;"Error in EXE or HEX file",0
dw 0020 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
hexwrt_ptr label word ;an000;"EXE and HEX files cannot be
; written",0
dw 0021 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
exewrt_ptr label word ;an000;"EXE and HEX files cannot be
; written",0
dw 0021 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
execemes_ptr label word ;an000;"EXEC failure",0
dw 0022 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
nonamespec_ptr label word ;an000;"(W)rite error, no destination
; defined",0
dw 0023 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
accmes_ptr label word ;an000;Access denied",0
dw 0024 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
paritymes_ptr label word ;an000;"Parity error or nonexistant
; memory error detected",0
dw 0025 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
prompt_ptr label word ;an000;"-",0
dw 0026 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
change_flag_ptr label word ;an000;"%1 -",0
dw 0027 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw dg:db_change_sub ;an000;sublist
dw 01 ;an000;no subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
df_error db "df",0
bf_error db "bf",0
br_error db "br",0
bp_error db "bp",0
drvlet db "A",0
CONSTEND LABEL BYTE
CONST ENDS
DATA SEGMENT PUBLIC BYTE
PUBLIC HEX_ARG1,HEX_ARG2,HEX_PTR,ARG_BUF
PUBLIC ARG_BUF_PTR,ADD_PTR,ERR_TYPE
PUBLIC CRLF_PTR,ADD_ARG,SUB_ARG,PROMPT_PTR
PUBLIC REGISTER_PTR,REG_NAME,REG_CONTENTS
PUBLIC SINGLE_REG_PTR,SINGLE_REG_ARG
PUBLIC ERRMES_PTR,LOC_PTR,LOC_ADD
PUBLIC LITTLE_PTR,BIG_PTR,LITTLE_CONTENTS
PUBLIC BIG_CONTENTS,COMP_PTR,COMP_ARG1,COMP_ARG2
PUBLIC COMP_ARG3,COMP_ARG4,COMP_ARG5,COMP_ARG6
PUBLIC WRTMES_PTR,WRT_ARG1,WRT_ARG2
PUBLIC IOTYP,MESTYP
PUBLIC ONE_CHAR_BUF,ONE_CHAR_BUF_PTR
PUBLIC OPBUF,UNASSEM_LN_PTR
PUBLIC xm_han_ret_ptr
PUBLIC xm_mapped_ptr
PUBLIC xm_err80_ptr
PUBLIC xm_err83_ptr
PUBLIC xm_err84_ptr
PUBLIC xm_err85_ptr
PUBLIC xm_err86_ptr
PUBLIC xm_err87_ptr
PUBLIC xm_err88_ptr
PUBLIC xm_err89_ptr
PUBLIC xm_err8a_ptr
PUBLIC xm_err8b_ptr
PUBLIC xm_err8d_ptr
PUBLIC xm_err8e_ptr
PUBLIC xm_err_gen_ptr
PUBLIC xm_parse_err_ptr
PUBLIC xm_status_ptr
PUBLIC xm_page_seg_ptr
PUBLIC xm_deall_ptr
PUBLIC xm_errff_ptr
PUBLIC xm_unall_ptr
PUBLIC xm_han_alloc_ptr
EXTRN XM_HANDLE_RET:word
EXTRN XM_LOG:byte
EXTRN XM_PHY:byte
EXTRN XM_PAGE_CNT:word
EXTRN XM_FRAME:word
EXTRN XM_DEALL_HAN:word
EXTRN XM_ALLOC_PG:word
EXTRN XM_TOTAL_PG:word
EXTRN XM_HAN_ALLOC:word
EXTRN XM_HAN_TOTAL:word
;=========================================================================
; begin parameter sublists
;=========================================================================
;======================= unassemble parameter sublists ===================
db_unassem_sb1 label dword ;an000;unassemble parameter 1
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:arg_buf ;an000;point to argument buffer
db 01 ;an000;parameter one
db left_align+Char_field_ASCIIZ
;an000;left align/ASCIIZ/character
db unlim_width ;an000;unlimited width
db 00 ;an000;minimum width
db pad_blank ;an000;blank pad
db_unassem_sb2 label dword ;an000;unassemble parameter 2
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:opbuf ;an000;point to argument buffer
db 02 ;an000;parameter two
db left_align+Char_field_ASCIIZ
;an000;left align/ASCIIZ/character
db unlim_width ;an000;unlimited width
db 00 ;an000;minimum width
db pad_blank ;an000;blank pad
;================== hex argument parameter sublists ======================
db_hexarg_sb1 label dword ;an000;hex argument parameter 1
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:hex_arg1 ;an000;point to argument buffer
db 01 ;an000;parameter one
db right_align+bin_hex_word
;an000;right align/word/hexadecimal
db 04 ;an000;maximum of 4 bytes
db 04 ;an000;minimum of 4 bytes
db pad_zero ;an000;blank pad
db_hexarg_sb2 label dword ;an000;hex argument parameter 2
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:hex_arg2 ;an000;point to argument buffer
db 02 ;an000;parameter two
db right_align+bin_hex_word
;an000;left align/word/hexadecimal
db 04 ;an000;maximum of 4 bytes
db 04 ;an000;minimum of 4 bytes
db pad_zero ;an000;blank pad
db_hexarg_sb3 label dword ;an000;hex argument parameter 3
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:arg_buf ;an000;point to argument buffer
db 03 ;an000;parameter one
db left_align+Char_field_ASCIIZ
;an000;left align/ASCIIZ/character
db unlim_width ;an000;unlimited width
db 00 ;an000;minimum width
db pad_blank ;an000;blank pad
;================== hex add parameter sublists ===========================
db_hexadd_sb1 label dword ;an000;hex add parameter 1
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:add_arg ;an000;point to add_arg
db 01 ;an000;parameter one
db right_align+bin_hex_word
;an000;left align/word/hexadecimal
db 04 ;an000;maximum of 4 bytes
db 04 ;an000;minimum of 4 bytes
db pad_zero ;an000;blank pad
db_hexadd_sb2 label dword ;an000;hex argument parameter 1
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:sub_arg ;an000;point to sub_arg
db 02 ;an000;parameter two
db right_align+bin_hex_word
;an000;left align/word/hexadecimal
db 04 ;an000;maximum of 4 bytes
db 04 ;an000;minimum of 4 bytes
db pad_zero ;an000;blank pad
;================== end hex add parameter sublists =======================
;================== single register parameter sublists ===================
;string: "%1 %2",13,10,":",0
db_singrg_sb1 label dword ;an000;single register parameter 1
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:arg_buf ;an000;point to argument buffer
db 01 ;an000;parameter one
db left_align+Char_field_ASCIIZ
;an000;left align/ASCIIZ/character
db unlim_width ;an000;unlimited width
db 00 ;an000;minimum of 0 bytes
db pad_blank ;an000;blank pad
db_singrg_sb2 label dword ;an000;single register parameter 2
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:single_reg_arg ;an000;point single_reg_arg
db 02 ;an000;parameter two
db right_align+bin_hex_word
;an000;left align/word/hexadecimal
db 04 ;an000;maximum of 4 bytes
db 04 ;an000;minimum of 4 bytes
db pad_zero ;an000;blank pad
;================== register parameter sublists ==========================
;string: "%1=%2 ",0
db_regist_sb1 label dword ;an000;register parameter 1
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:reg_name ;an000;point to reg_name
db 01 ;an000;parameter one
db left_align+Char_field_ASCIIZ
;an000;left align/ASCIIZ/character
db 02 ;an000;unlimited width
db 02 ;an000;minimum of 0 bytes
db pad_blank ;an000;blank pad
db_regist_sb2 label dword ;an000;register parameter 2
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:reg_contents ;an000;point to reg_contents
db 02 ;an000;parameter two
db right_align+bin_hex_word
;an000;left align/word/hexadecimal
db 04 ;an000;maximum of 4 bytes
db 04 ;an000;minimum of 4 bytes
db pad_zero ;an000;blank pad
;================== error message parameter sublists =====================
;string: "%1 Error",0
db_error_sb1 label dword ;an000;error message parameter 1
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:err_type ;an000;point to argument buffer
db 01 ;an000;parameter one
db left_align+Char_field_ASCIIZ
;an000;left align/ASCIIZ/character
db unlim_width ;an000;unlimited width
db 00 ;an000;minimum of 0 bytes
db pad_blank ;an000;blank pad
;================== writing message parameter sublists ===================
;string: "Writing %1%2 bytes",0
db_wrtmes_sb1 label dword ;an000;wrtmes parameter 1
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:wrt_arg1 ;an000;point to argument buffer
db 01 ;an000;parameter one
db right_align+bin_hex_word
;an000;right align/word/hexadecimal
db 04 ;an000;maximum of 4 bytes
db 04 ;an000;minimum of 4 bytes
db pad_zero ;an000;blank pad
db_wrtmes_sb2 label dword ;an000;wrtmes parameter 2
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:wrt_arg2 ;an000;point to argument buffer
db 02 ;an000;parameter two
db left_align+bin_hex_word
;an000;left align/word/hexadecimal
db 04 ;an000;maximum of 4 bytes
db 04 ;an000;minimum of 4 bytes
db pad_zero ;an000;blank pad
;================== loc address parameter sublists =======================
;string: "%1:%2=",0
db_locadd_sb1 label dword ;an000;loc address parameter 1
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:arg_buf ;an000;point to argument buffer
db 01 ;an000;parameter one
db right_align+Char_field_ASCIIZ
;an000;left align/ASCIZZ/character
db unlim_width ;an000;unlimited width
db 00 ;an000;minimum of 0 bytes
db pad_blank ;an000;blank pad
db_locadd_sb2 label dword ;an000;loc address parameter 2
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:loc_add ;an000;point to loc_add
db 02 ;an000;parameter two
db right_align+bin_hex_word
;an000;left align/word/hexadecimal
db 04 ;an000;maximum of 4 bytes
db 04 ;an000;minimum of 4 bytes
db pad_zero ;an000;blank pad
;================== little contents parameter sublists ===================
;string "%1",0
db_little_sb1 label dword ;an000;one byte output parameter 1
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:little_contents ;an000;point to little_contents
db 01 ;an000;parameter one
db right_align+bin_hex_byte
;an000;left align/byte/hexadecimal
db 02 ;an000;maximum of 2 bytes
db 02 ;an000;minimum of 2 bytes
db pad_zero ;an000;blank pad
;================== big argument parameter sublists ======================
;string: "%1",0
db_big_sb1 label dword ;an000;word argument parameter 1
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:big_contents ;an000;point to big_contents
db 01 ;an000;parameter one
db right_align+bin_hex_word
;an000;left align/word/hexadecimal
db 04 ;an000;maximum of 4 bytes
db 04 ;an000;minimum of 4 bytes
db pad_zero ;an000;blank pad
;======================= comp argument parameter sublists ================
;string "%1:%2 %3 %4 %5:%6",0
db_comp_sb1 label dword ;an000;comp argument parameter 1
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:comp_arg1 ;an000;point to comp_arg1
db 01 ;an000;parameter one
db right_align+bin_hex_word
;an000;left align/word/hexadecimal
db 04 ;an000;maximum of 4 bytes
db 04 ;an000;minimum of 4 bytes
db pad_zero ;an000;blank pad
db_comp_sb2 label dword ;an000;comp argument parameter 2
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:comp_arg2 ;an000;point to comp_arg2
db 02 ;an000;parameter two
db right_align+bin_hex_word
;an000;left align/word/hexadecimal
db 04 ;an000;maximum of 4 bytes
db 04 ;an000;minimum of 4 bytes
db pad_zero ;an000;blank pad
db_comp_sb3 label dword ;an000;comp argument parameter 3
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:comp_arg3 ;an000;point to comp_arg3
db 03 ;an000;parameter three
db right_align+bin_hex_byte
;an000;left align/byte/hexadecimal
db 02 ;an000;maximum of 2 bytes
db 02 ;an000;minimum of 2 bytes
db pad_zero ;an000;blank pad
db_comp_sb4 label dword ;an000;comp argument parameter 4
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:comp_arg4 ;an000;point to comp_arg4
db 04 ;an000;parameter four
db right_align+bin_hex_byte
;an000;left align/byte/hexadecimal
db 02 ;an000;maximum of 2 bytes
db 02 ;an000;minimum of 2 bytes
db pad_zero ;an000;blank pad
db_comp_sb5 label dword ;an000;comp argument parameter 5
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:comp_arg5 ;an000;point to comp_arg5
db 05 ;an000;parameter five
db right_align+bin_hex_word
;an000;left align/word/hexadecimal
db 04 ;an000;maximum of 4 bytes
db 04 ;an000;minimum of 4 bytes
db pad_zero ;an000;blank pad
db_comp_sb6 label dword ;an000;comp argument parameter 6
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:comp_arg6 ;an000;
db 06 ;an000;parameter 6
db right_align+bin_hex_word
;an000;left align/word/hexadecimal
db 04 ;an000;maximum of 4 bytes
db 04 ;an000;minimum of 4 bytes
db pad_zero ;an000;blank pad
;======================= disk error parameter sublists ===================
;string: "%1 error %2 drive %3",0
db_disk_sb1 label dword ;an000;disk argument parameter 1
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:mestyp ;an000;point to mestyp
db 01 ;an000;parameter one
db left_align+Char_field_ASCIIZ
;an000;left align/ASCIIZ/character
db unlim_width ;an000;unlimited width
db 00 ;an000;minimum of 0 bytes
db pad_blank ;an000;blank pad
db_disk_sb2 label dword ;an000;disk argument parameter 2
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:iotyp ;an000;point to iotyp
db 02 ;an000;parameter two
db left_align+Char_field_ASCIIZ
;an000;left align/ASCIIZ/character
db unlim_width ;an000;unlimited width
db 00 ;an000;minimum of 0 bytes
db pad_blank ;an000;blank pad
db_disk_sb3 label dword ;an000;disk argument parameter 3
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:drive ;an000;point to drive
db 03 ;an000;parameter three
db left_align+char_field_char
;an000;left align/character/character
db unlim_width ;an000;unlimited width
db 00 ;an000;minimum of 0 bytes
db pad_blank ;an000;blank pad
arg_buf_sb1 label dword ;an000;argument sublist
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:arg_buf ;an000;point to argument buffer
db 01 ;an000;parameter one
db left_align+Char_Field_ASCIIZ
;an000;left align/ASCIIZ/character
db unlim_width ;an000;unlimited width
db 00 ;an000;minimum of 0 bytes
db pad_blank ;an000;blank pad
one_char_sb1 label dword ;an000;character buffer sublist
db Sublist_Length ;an000;sublist size
db reserved ;an000;reserved
dd dg:one_char_buf ;an000;point to argument buffer
db 01 ;an000;parameter one
db left_align+Char_Field_Char
;an000;left align/character/character
db unlim_width ;an000;unlimited width
db 00 ;an000;minimum of 0 bytes
db pad_blank ;an000;blank pad
xm_han_sub label dword ;an000;sublist for handles
db Sublist_Length ;an000;11 bytes
db Reserved ;an000;reserved field
dd dg:XM_HANDLE_RET ;an000;parameter 1
db 01 ;an000;parameter 1
db right_align+Bin_Hex_Word;an000;
db 04 ;an000;maximum width
db 04 ;an000;minimum width
db 30h ;an000;pad with zeros
xm_map_sub label dword ;an000;sublist for mappings
db Sublist_Length ;an000;11 bytes
db Reserved ;an000;reserved field
dd dg:XM_LOG ;an000;parameter 1
db 01 ;an000;parameter 1
db right_align+Bin_Hex_Byte;an000;
db 02 ;an000;maximum width
db 02 ;an000;minimum width
db 30h ;an000;pad with zeros
db Sublist_Length ;an000;11 bytes
db Reserved ;an000;reserved field
dd dg:XM_PHY ;an000;parameter 2
db 02 ;an000;parameter 2
db right_align+Bin_Hex_Byte;an000;
db 02 ;an000;maximum width
db 02 ;an000;minimum width
db 30h ;an000;pad with zeros
xm_sta_sub label word ;an000;sublist for status
db Sublist_Length ;an000;11 bytes
db Reserved ;an000;reserved field
dd dg:XM_HANDLE_RET ;an000;parameter 1
db 01 ;an000;parameter 1
db right_align+Bin_Hex_Word;an000;
db 04 ;an000;maximum width
db 04 ;an000;minimum width
db 30h ;an000;pad with zeros
db Sublist_Length ;an000;11 bytes
db Reserved ;an000;reserved field
dd dg:XM_PAGE_CNT ;an000;parameter 2
db 02 ;an000;parameter 2
db right_align+Bin_Hex_Word;an000;
db 04 ;an000;maximum width
db 04 ;an000;minimum width
db 30h ;an000;pad with zeros
xm_page_seg_sub label word ;an000;sublist for frame seg status
db Sublist_Length ;an000;11 bytes
db Reserved ;an000;reserved field
dd dg:XM_PHY ;an000;parameter 1
db 01 ;an000;parameter 1
db right_align+Bin_Hex_Byte;an000;
db 02 ;an000;maximum width
db 02 ;an000;minimum width
db 30h ;an000;pad with zeros
db Sublist_Length ;an000;11 bytes
db Reserved ;an000;reserved field
dd dg:XM_FRAME ;an000;parameter 2
db 02 ;an000;parameter 2
db right_align+Bin_Hex_Word;an000;
db 04 ;an000;maximum width
db 04 ;an000;minimum width
db 30h ;an000;pad with zeros
xm_deall_sub label word ;an000;sublist for handle deallocation
db Sublist_Length ;an000;11 bytes
db Reserved ;an000;reserved field
dd dg:XM_DEALL_HAN ;an000;parameter 1
db 01 ;an000;parameter 1
db right_align+Bin_Hex_Byte;an000;
db 04 ;an000;maximum width
db 04 ;an000;minimum width
db 30h ;an000;pad with zeros
xm_unall_sub label word ;an000;sublist unallocated page report
db Sublist_Length ;an000;11 bytes
db Reserved ;an000;reserved field
dd dg:XM_ALLOC_PG ;an000;parameter 1
db 01 ;an000;parameter 1
db right_align+Bin_Hex_Word;an000;
db 04 ;an000;maximum width
db 04 ;an000;minimum width
db 20h ;an000;pad with blanks
db Sublist_Length ;an000;11 bytes
db Reserved ;an000;reserved field
dd dg:XM_TOTAL_PG ;an000;parameter 1
db 02 ;an000;parameter 1
db right_align+Bin_Hex_Word;an000;
db 04 ;an000;maximum width
db 04 ;an000;minimum width
db 20h ;an000;pad with zeros
xm_han_alloc_sub label word ;an000;sublist unallocated page report
db Sublist_Length ;an000;11 bytes
db Reserved ;an000;reserved field
dd dg:XM_HAN_ALLOC ;an000;parameter 1
db 01 ;an000;parameter 1
db right_align+Bin_Hex_Word;an000;
db 04 ;an000;maximum width
db 04 ;an000;minimum width
db 20h ;an000;pad with blanks
db Sublist_Length ;an000;11 bytes
db Reserved ;an000;reserved field
dd dg:XM_HAN_TOTAL ;an000;parameter 1
db 02 ;an000;parameter 1
db right_align+Bin_Hex_Word;an000;
db 04 ;an000;maximum width
db 04 ;an000;minimum width
db 20h ;an000;pad with zeros
;=========================================================================
; end parameter sublists
;=========================================================================
unassem_ln_ptr label word ;an000;"%1%2",0
dw 0032 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw dg:db_unassem_sb1 ;an000;sublist
dw 02 ;an000;2 subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
hex_ptr label word ;an000;"%1:%2 %3",0
dw 0033 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw dg:db_hexarg_sb1 ;an000;sublist
dw 03 ;an000;3 subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
add_ptr label word ;an000;"%1 %2",0
dw 0034 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw dg:db_hexadd_sb1 ;an000;sublist
dw 02 ;an000;2 subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
single_reg_ptr label word ;an000;"%1 %2",13,10,":",0
dw 0035 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw dg:db_singrg_sb1 ;an000;sublist
dw 02 ;an000;2 subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
register_ptr label word ;an000;"%1=%2 ",0 ex: AX=FFFF
dw 0036 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw dg:db_regist_sb1 ;an000;sublist
dw 02 ;an000;2 subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
errmes_ptr label word ;an000;"%1 Error",0
dw 0037 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw dg:db_error_sb1 ;an000;sublist
dw 01 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
wrtmes_ptr label word ;an000;"Writing %1 bytes",0
dw 0038 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw dg:db_wrtmes_sb1 ;an000;sublist
dw 01 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
loc_ptr label word ;an000:"%1;%2=",0 ex:CX:0000
dw 0039 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw dg:db_locadd_sb1 ;an000;sublist
dw 02 ;an000;2 subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
little_ptr label word ;an000;"%1",0 ex:FF
dw 0040 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw dg:db_little_sb1 ;an000;sublist
dw 01 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
big_ptr label word ;an000;"%1",0
dw 0041 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw dg:db_big_sb1 ;an000;sublist
dw 01 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
comp_ptr label word ;an000;"%1:%2 %3 %4 %5:%6",0
dw 0042 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility message
dw stdout ;an000;display handle
dw dg:db_comp_sb1 ;an000;sublist
dw 06 ;an000;6 subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
arg_buf_ptr label word ;an000;"%1"
dw 0046 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw dg:arg_buf_sb1 ;an000;sublist
dw 01 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
one_char_buf_ptr label word ;an000;"%1"
dw 0047 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw dg:one_char_sb1 ;an000;sublist
dw 01 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_unall_ptr label word ;an000;unallocated message report
dw 0050 ;an000;"%1 of a total %2 EMS pages
; have been allocated",cr,lf
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw dg:XM_UNALL_SUB ;an000;sublist
dw 02 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_han_alloc_ptr label word ;an000;unallocated message report
dw 0051 ;an000;"%1 of a total %2 EMS handles
; have been allocated",cr,lf
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw dg:XM_HAN_ALLOC_SUB ;an000;sublist
dw 02 ;an000;2 subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_han_ret_ptr label word ;an000;prints handle created
dw 0055 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw dg:XM_HAN_SUB ;an000;sublist
dw 01 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_mapped_ptr label word ;an000;prints log/phy pages
dw 0056 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw dg:XM_MAP_SUB ;an000;sublist
dw 02 ;an000;2 subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_err80_ptr label word ;an000;ems error message
dw 0057 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_err83_ptr label word ;an000;ems error message
dw 0058 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_err84_ptr label word ;an000;ems error message
dw 0059 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_err85_ptr label word ;an000;ems error message
dw 0060 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_err86_ptr label word ;an000;ems error message
dw 0061 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_err87_ptr label word ;an000;ems error message
dw 0062 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_err88_ptr label word ;an000;ems error message
dw 0063 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_err89_ptr label word ;an000;ems error message
dw 0064 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_err8a_ptr label word ;an000;ems error message
dw 0065 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_err8b_ptr label word ;an000;ems error message
dw 0066 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_err8d_ptr label word ;an000;ems error message
dw 0067 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_err8e_ptr label word ;an000;ems error message
dw 0068 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_err_gen_ptr label word ;an000;ems error message
dw 0070 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_parse_err_ptr label word ;an000;input error message
dw 0071 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;1 sub
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_status_ptr label word ;an000;prints status of EMS
dw 0072 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw dg:XM_STA_SUB ;an000;sublist
dw 02 ;an000;2 subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_page_seg_ptr label word ;an000;"Physical page %1 = Frame
; segment %2"
dw 0075 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw dg:XM_PAGE_SEG_SUB ;an000;sublist
dw 02 ;an000;2 subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_deall_ptr label word ;an000;"Handle %1 deallocated"
dw 0076 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw dg:XM_DEALL_SUB ;an000;sublist
dw 01 ;an000;1 subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
xm_errff_ptr label word ;an000;"EMS not installed"
dw 0078 ;an000;message number
db UTILITY_MSG_CLASS ;an000;utility messages
dw stdout ;an000;display handle
dw 00 ;an000;sublist
dw 00 ;an000;0 subs
db no_input ;an000;no keyboard input
dw 00 ;an000;no keyboard buffer
arg_buf db 80 dup (?) ;an000;argument buffer
one_char_buf db ? ;an000;character buffer
opbuf db 51h dup (?)
hex_arg1 dw ?
hex_arg2 dw ?
add_arg dw ?
sub_arg dw ?
single_reg_arg dw ?
reg_name dw ?
reg_contents dw ?
err_type db 3 dup(0) ;ac000;changed to hold bf,bp,etc.
wrt_arg1 dw ?
wrt_arg2 dw ?
loc_add dw ?
little_contents dw ?
big_contents dw ?
comp_arg1 dw ?
comp_arg2 dw ?
comp_arg3 dw ?
comp_arg4 dw ?
comp_arg5 dw ?
comp_arg6 dw ?
mestyp dw ?
iotyp dw ?
drive db ?
DATA ENDS
END
|