-
Notifications
You must be signed in to change notification settings - Fork 0
/
fastopen.cl2
53 lines (33 loc) · 1.2 KB
/
fastopen.cl2
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
; ----------------------------------------------------------
PUBLIC $M_MSGSERV_2
IF1
%out ... Including message Class 2
ENDIF
; ----------------------------------------------------------
$M_CLASS_2_STRUC LABEL BYTE
$M_CLASS_ID <002H,EXPECTED_VERSION,Class_2_MessageCount>
; ----------------------------------------------------------
; ----------------------------------------------------------
$M_2_FF_STRUC LABEL BYTE
$M_ID <0FFFFH,$M_2_FF_MSG-$M_2_FF_STRUC>
; ----------------------------------------------------------
; ----------------------------------------------------------
$M_2_FF_MSG LABEL BYTE
DB $M_2_FF_END-$M_2_FF_MSG-1
DB "Parse Error %1"
$M_2_FF_END LABEL BYTE
; ----------------------------------------------------------
Class_2_MessageCount EQU 1
; ----------------------------------------------------------
IF FARmsg
$M_MSGSERV_2 PROC FAR
ELSE
$M_MSGSERV_2 PROC NEAR
ENDIF
PUSH CS
POP ES
LEA DI,$M_CLASS_2_STRUC
ADD CX,$-$M_CLASS_2_STRUC
RET
$M_MSGSERV_2 Endp
; ----------------------------------------------------------