3 title C to PARSER interface
4 ;-------------------------------------------------------------------
8 ; PURPOSE: Supplies an interface between C programs and
11 ; **(Customized for the SUBST utility)
14 ; parse(&inregs,&outregs);
18 ;-------------------------------------------------------------------
24 ;-------------------------------------------------------------------
29 FarSW equ
0 ; make sysparse be a NEAR proc ;AN000;
30 TimeSW equ
0 ; Check time format ;AN000;
31 FileSW equ
1 ; Check file specification ;AN000;
32 CAPSW equ
1 ; Perform CAPS if specified ;AN000;
33 CmpxSW equ
0 ; Check complex list ;AN000;
34 NumSW equ
0 ; Check numeric value ;AN000;
35 KeySW equ
0 ; Support keywords ;AN000;
36 SwSW equ
1 ; Support switches ;AN000;
37 Val1SW equ
0 ; Support value definition 1 ;AN000;
38 Val2SW equ
0 ; Support value definition 2 ;AN000;
39 Val3SW equ
0 ; Support value definition 3 ;AN000;
40 DrvSW equ
1 ; Support drive only format ;AN000;
41 QusSW equ
0 ; Support quoted string format ;AN000;
42 ;-------------------------------------------------------------------
47 _DATA
segment byte public 'DATA' ;AN000;
48 BASESW
= 1 ;SPECIFY, PSDATA POINTED TO BY "DS"
49 INCSW
= 0 ;PSDATA.INC IS ALREADY INCLUDED
50 INCLUDE PSDATA
.INC ;PARSER'S WORK SPACE
53 _TEXT
segment byte public 'CODE' ;AN000;
55 ASSUME
CS: PGROUP
;AN000;
56 ASSUME
DS: DGROUP
;AN000;
58 ;-------------------------------------------------------------------
59 include parse
.asm
; include the parser ;AN000;
60 ;-------------------------------------------------------------------
62 _parse proc
near ;AN000;
64 push bp ; save user's base pointer ;AN000;
65 mov bp,sp ; set bp to current sp ;AN000;
66 push di ; save some registers ;AN000;
69 ; copy C inregs into proper registers
71 mov di,[bp+4] ; fix di (arg 0) ;AN000;
73 ;-------------------------------------------------------------------
75 mov ax,[di+0ah] ; load di ;AN000;
76 push ax ; the di value from inregs is now on stack;AN000;
78 mov ax,[di+00] ; get inregs.x.ax ;AN000;
79 mov bx,[di+02] ; get inregs.x.bx ;AN000;
80 mov cx,[di+04] ; get inregs.x.cx ;AN000;
81 mov dx,[di+06] ; get inregs.x.dx ;AN000;
82 mov si,[di+08] ; get inregs.x.si ;AN000;
83 pop di ; get inregs.x.di from stack ;AN000;
85 push bp ; save base pointer ;AN000;
87 ;-------------------------------------------------------------------
88 call sysparse
; call the parser ;AN000;
89 ;-------------------------------------------------------------------
91 pop bp ; restore base pointer ;AN000;
92 push di ; the di value from call is now on stack;AN000;
93 mov di,[bp+6] ; fix di (arg 1) ;AN000;
95 mov [di+00],ax ; load outregs.x.ax ;AN000;
96 mov [di+02],bx ; load outregs.x.bx ;AN000;
97 mov [di+04],cx ; load outregs.x.cx ;AN000;
98 mov [di+06],dx ; load outregs.x.dx ;AN000;
99 mov [di+08],si ; load outregs.x.si ;AN000;
101 lahf ; get flags into ax ;AN000;
102 mov al,ah ; move into low byte ;AN000;
103 mov [di+0ch],ax ; load outregs.x.cflag ;AN000;
105 pop ax ; get di from stack ;AN000;
106 mov [di+0ah],ax ; load outregs.x.di ;AN000;
108 ;-------------------------------------------------------------------
110 pop si ; restore registers ;AN000;
112 mov sp,bp ; restore sp ;AN000;
113 pop bp ; restore user's bp ;AN000;
118 _TEXT ends
; end code segment ;AN000;