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