fpe387.asm

来自「开放源码的编译器open watcom 1.6.0版的源代码」· 汇编 代码 · 共 126 行

ASM
126
字号
;*****************************************************************************
;*
;*                            Open Watcom Project
;*
;*    Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
;*
;*  ========================================================================
;*
;*    This file contains Original Code and/or Modifications of Original
;*    Code as defined in and that are subject to the Sybase Open Watcom
;*    Public License version 1.0 (the 'License'). You may not use this file
;*    except in compliance with the License. BY USING THIS FILE YOU AGREE TO
;*    ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
;*    provided with the Original Code and Modifications, and is also
;*    available at www.sybase.com/developer/opensource.
;*
;*    The Original Code and all software distributed under the License are
;*    distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
;*    EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
;*    ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
;*    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
;*    NON-INFRINGEMENT. Please see the License for the specific language
;*    governing rights and limitations under the License.
;*
;*  ========================================================================
;*
;* Description:  Connect/disconnect 80x87 interrupt handler.
;*
;*****************************************************************************


.8087
.386p

include struct.inc
include mdef.inc
include extender.inc

        xref    __Phar_hook_init_       ; setup interupts for Pharlap
        xref    __Phar_hook_fini_       ; restore interupts for Pharlap
        xref    __DOS4G_hook_init_      ; setup interupts for Rational
        xref    __DOS4G_hook_fini_      ; restore interupts for Rational

        modstart        fpe387

        datasegment

        extrn   __8087          : byte
        extrn   "C",_Extender   : byte

        public  "C",__PMSeg
        public  "C",__PMAddr
        public  "C",__RMAddr
__PMSeg         dw      0
__PMAddr        dd      0
__RMAddr        dd      0

        enddata

        xdefp   "C",__Init_FPE_handler
defp    __Init_FPE_handler
        _guess                          ; guess initialization required
          cmp   word ptr __PMSeg,0      ; - quit if already initialized
          _quif ne                      ; - ...
          cmp   byte ptr __8087,0       ; - quit if no 80x87 present
          _quif e                       ; - ...
        _admit                          ; admit: already initialized
           ret                          ; - return
        _endguess                       ; endguess
        push    EAX                     ; save registers
        push    EBX                     ; ...
        push    ECX                     ; ...
        push    EDX                     ; ...
        push    ES                      ; ...
        push    DS                      ; ...
        _guess                          ; guess: Rational DOS/4G
          cmp   byte ptr _Extender,X_RATIONAL ; - quit if not DOS/4G
          _quif ne                      ; - ...
          call __DOS4G_hook_init_       ; - setup interupt vector
        _admit                          ; admit: Pharlap
          call __Phar_hook_init_        ; - setup interupt vector
        _endguess                       ; endguess
        pop     DS                      ; restore DS
        pop     ES                      ; restore registers
        pop     EDX                     ; ...
        pop     ECX                     ; ...
        pop     EBX                     ; ...
        pop     EAX                     ; ...
        ret                             ; return
endproc __Init_FPE_handler


        xdefp   "C",__Fini_FPE_handler
defp    __Fini_FPE_handler
        cmp     word ptr __PMSeg,0      ; if not initialized
        _if     e                       ; - then
          ret                           ; - return
        _endif                          ; endif
        push    EAX                     ; save registers
        push    EBX                     ; ...
        push    EDX                     ; ...
        push    DS                      ; ...
        sub     ESP,4                   ; allocate space for control word
        fstcw   word ptr [ESP]          ; get control word
        fwait                           ; ...
        mov     byte ptr [ESP],7Fh      ; disable exception interrupts
        fldcw   word ptr [ESP]          ; ...
        fwait                           ; ...
        add     ESP,4                   ; remove temporary
        _guess                          ; guess: Rational DOS/4G
          cmp byte ptr _Extender,X_RATIONAL ; - quit if not DOS/4G
          _quif ne                      ; - ...
          call __DOS4G_hook_fini_       ; - restore int vector
        _admit                          ; admit: Pharlap
          call __Phar_hook_fini_        ; - restore int vector
        _endguess                       ; endguess
        pop     DS                      ; restore registers
        pop     EDX                     ; ...
        pop     EBX                     ; ...
        pop     EAX                     ; ...
        ret
endproc __Fini_FPE_handler

        endmod
        end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?