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