home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Name isct2int -- Interface function for C-TOOLS-2-style
- ; interrupt service routines.
- ;
- ; Synopsis isct2int(pregs,pisrblk,pmsg);
- ;
- ; (Note: this is not intended for direct use in C
- ; programs. It to be called from ISDISPAT.ASM,
- ; the ISR dispatcher.)
- ;
- ; ALLREG *pregs Address of register structure containing
- ; copies of machine registers in effect
- ; at the time of the interrupt.
- ; ISRCTRL *pisrblk Address of this ISR's control block.
- ; ISRMSG *pmsg Address of message area between
- ; ISR dispatcher and this function.
- ;
- ; Description This function allows interrupt service routines which
- ; were built using C TOOLS 2 to be used without change
- ; under C TOOLS PLUS. ISCT2INT is installed by ISSETISR
- ; as an ordinary C TOOLS PLUS interrupt service routine.
- ; Whenever ISCT2INT is invoked, it passes control to the
- ; real ISR in the manner of C TOOLS 2. When the ISR
- ; returns, ISCT2INT returns any changed register values to
- ; the calling program.
- ;
- ; Returns *pregs Some register values in this structure
- ; may be changed by the underlying "real"
- ; ISR.
- ;
- ; Version 3.0 (C)Copyright Blaise Computing Inc. 1986
- ;
-
- name isct2int
-
- LONGPROG = 0 ; initialize constants for
- LONGDATA = 0 ; Pass1 of the assembler
-
- include compiler.mac ; Specifies the C compiler
-
- if LAT200 or LAT210 or LAT300
- include dos.mac
- LONGPROG = LPROG
- LONGDATA = LDATA
-
- pseg
- public isct2int
-
- if LONGPROG
- isct2int proc far
- else
- isct2int proc near
- endif
- endif
-
- if MSC300
- include dos.mac
- LONGPROG = LPROG
- LONGDATA = LDATA
-
- pseg isct2int
- public _isct2int
- if LONGPROG
- _isct2int proc far
- else
- _isct2int proc near
- endif
-
- endif
-
- if LONGPROG
- x equ 6
- else
- x equ 4
- endif
-
- if LONGDATA
- pregs equ dword ptr [bp].x
- pisrblk equ dword ptr [bp].x+4
- pmsg equ dword ptr [bp].x+8
- else
- pregs equ word ptr [bp].x
- pisrblk equ word ptr [bp].x+2
- pmsg equ word ptr [bp].x+4
- endif
-
- ISRCTRL struc ; ISRCTRL: ISR control block
- ; (This must match declaration in
- ; BISR.H.)
- ;
- icb_fcall_opcode dw ? ; NOP + Far call opcode
- ; (0x9A90)
- icb_isrdisp dd ? ; Address of ISR dispatcher
- icb_iret_opcode dw ? ; IRET + RETF opcodes (0xcbcf)
- ; (Offset of icb_iret_opcode
- ; is on stack on entry to ISDISPAT.)
- ;
- icb_isrstk_r dw ? ; ISR stack region: offset
- icb_isrstk_s dw ? ; segment
- icb_isrstksize dw ? ; ISR stack size
- icb_isrsp dw ? ; ISR SP value at start of
- ; current ISR call
- ;
- icb_isrds dw ? ; DS value required by ISR
- icb_isres dw ? ; ES value required by ISR
- icb_isr dd ? ; Address of this function
- icb_isrpsp dw ? ; PSP of program containing ISR
- ;
- icb_prev_vec dd ? ; Previous value of vector
- ;
- icb_level dw ? ; Number of calls in progress
- ; (0 if not in progress)
- icb_limit dw ? ; Max number of nested calls
- icb_signature dw ? ; Signature identifying this
- ; structure
- icb_sign2 dw ? ; One's complement of
- ; "signature"
- icb_ident db 16 dup (?) ; Identifying name
- icb_control dw ? ; Bit fields to control
- ; dispatcher options
- icb_status dw ? ; Status info left by
- ; dispatcher
- icb_ct2_isr_r dw ? ; Offset of "real" ISR.
- icb_ct2_isr_s dw ? ; Segment of "real" ISR.
- icb_scratch db 6 dup (?) ; Scratch space for use by
- ; dispatcher & related programs
- ISRCTRL ends
-
- ; Exit style codes -- these must match BISR.H.
-
- IEXIT_NORMAL equ 0
- IEXIT_RETF equ 1
-
- ALLREG struc ; ALLREG structure
- reg_ax dw ? ; (This must match declaration in
- reg_bx dw ? ; BUTILITY.H).
- reg_cx dw ?
- reg_dx dw ?
- reg_si dw ?
- reg_di dw ?
- reg_ds dw ?
- reg_es dw ?
- reg_ss dw ?
- reg_cs dw ?
- reg_flags dw ?
- reg_bp dw ?
- reg_sp dw ?
- reg_ip dw ?
-
- allreg_size db ?
- ALLREG ends
-
- ; **************** BEGIN CODE HERE ******************
-
- assume ds:nothing,es:nothing,ss:nothing
-
- push bp ; Save original BP
- mov bp,sp
-
- mov cx,ds ; Temporarily save entering DS.
-
- if LONGDATA ; Get address of control block.
- lds bx,pisrblk
- else
- mov bx,pisrblk
- endif
-
- mov ax,[bx].icb_ct2_isr_s ; Make sure code address is
- or ax,[bx].icb_ct2_isr_r ; nonzero.
- jz exit ; (If code address is 0:0,
- ; just return.)
-
- if LONGPROG ; Establish vector through which
- push [bx].icb_ct2_isr_s ; we can call the ISR.
- push [bx].icb_ct2_isr_r
- vector equ dword ptr [bp-4]
- else
- push [bx].icb_ct2_isr_r
- vector equ word ptr [bp-2]
- endif
-
- if LONGDATA ; Get address of ALLREG structure.
- lds bx,pregs
- else
- mov bx,pregs
- endif
-
- push [bx].reg_es ; Push the register values where
- push [bx].reg_ds ; the ISR expects to see them.
- push [bx].reg_di
- push [bx].reg_si
- push [bx].reg_dx
- push [bx].reg_cx
- push [bx].reg_bx
- push [bx].reg_ax
-
- mov ds,cx ; Restore DS value for ISR.
-
- call vector ; Call the ISR.
-
- mov cx,ds ; Save DS again.
-
- if LONGDATA ; Get address of ALLREG structure.
- lds bx,pregs
- else
- mov bx,pregs
- endif
-
- ; Pass resulting register values from ISR back to ALLREG structure.
-
- inc sp ; Discard copy of AX on stack,
- inc sp
- mov [bx].reg_ax,ax ; but return the value which is in
- ; AX register.
- pop [bx].reg_bx
- pop [bx].reg_cx
- pop [bx].reg_dx
- pop [bx].reg_si
- pop [bx].reg_di
- pop [bx].reg_ds
- pop [bx].reg_es
-
- if LONGPROG ; Discard the vector
- add sp,4
- else
- inc sp
- inc sp
- endif
-
- exit:
- mov ds,cx ; Restore DS again.
-
- pop bp
- ret
-
- if MSC300
- _isct2int endp
- else
- isct2int endp
- endif
-
- if LAT200 or LAT210 or LAT300
- endps
- endif
-
- if MSC300
- endps isct2int
- endif
-
- end