3 title C to PARSER interface
4 ;-------------------------------------------------------------------
8 ; PURPOSE: Supplies an interface between C programs and
12 ; parse(&inregs,&outregs);
16 ;-------------------------------------------------------------------
22 ;-------------------------------------------------------------------
23 FarSW equ
0 ; make sysparse be a NEAR proc
24 TimeSW equ
1 ; Check time format
25 FileSW equ
1 ; Check file specification
26 CAPSW equ
1 ; Perform CAPS if specified
27 CmpxSW equ
0 ; Check complex list
28 NumSW equ
0 ; Check numeric value
29 KeySW equ
0 ; Support keywords
30 SwSW equ
1 ; Support switches
31 Val1SW equ
0 ; Support value definition 1
32 Val2SW equ
0 ; Support value definition 2
33 Val3SW equ
0 ; Support value definition 3
34 DrvSW equ
1 ; Support drive only format
35 QusSW equ
0 ; Support quoted string format
36 IncSW equ
0 ; Dont include PSDATA, I just did it
37 BaseSW equ
1 ; DS points to data
38 ;-------------------------------------------------------------------
43 _DATA
segment byte public 'DATA'
47 _TEXT
segment byte public 'CODE'
52 ;-------------------------------------------------------------------
54 include parse
.asm
; include the parser
56 ;-------------------------------------------------------------------
60 push bp ; save user's base pointer
61 mov bp,sp ; set bp to current sp
62 push di ; save some registers
65 ; copy C inregs into proper registers
67 mov di,[bp+4] ; fix di (arg 0)
69 ;-------------------------------------------------------------------
71 mov ax,[di+0ah] ; load di
72 push ax ; the di value from inregs is now on stack
74 mov ax,[di+00] ; get inregs.x.ax
75 mov bx,[di+02] ; get inregs.x.bx
76 mov cx,[di+04] ; get inregs.x.cx
77 mov dx,[di+06] ; get inregs.x.dx
78 mov si,[di+08] ; get inregs.x.si
79 pop di ; get inregs.x.di from stack
81 push bp ; save base pointer
82 ;-------------------------------------------------------------------
83 call sysparse
; call the parser
84 ;-------------------------------------------------------------------
85 pop bp ; restore base pointer
86 push di ; the di value from call is now on stack
87 mov di,[bp+6] ; fix di (arg 1)
89 mov [di+00],ax ; load outregs.x.ax
90 mov [di+02],bx ; load outregs.x.bx
91 mov [di+04],cx ; load outregs.x.cx
92 mov [di+06],dx ; load outregs.x.dx
93 mov [di+08],si ; load outregs.x.si
95 lahf ; get flags into ax
96 mov al,ah ; move into low byte
97 mov [di+0ch],ax ; load outregs.x.cflag
99 pop ax ; get di from stack
100 mov [di+0ah],ax ; load outregs.x.di
102 ;-------------------------------------------------------------------
104 pop si ; restore registers
106 mov sp,bp ; restore sp
107 pop bp ; restore user's bp
112 _TEXT ends
; end code segment