home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 1.ddi / WINLBSRC.ZIP / FPERR.ASM < prev    next >
Encoding:
Assembly Source File  |  1992-06-10  |  905 b   |  36 lines

  1. ;[]-----------------------------------------------------------------[]
  2. ;|      FPERR.ASM -- Entry point for floating point exception        |
  3. ;[]-----------------------------------------------------------------[]
  4.  
  5. ;
  6. ;       C/C++ Run Time Library - Version 5.0
  7. ;       Copyright (c) 1987, 1992 by Borland International
  8. ;       All Rights Reserved.
  9.  
  10. ;This module is memory model indepedent
  11.  
  12.                 include RULES.ASI
  13.  
  14.                 extrn __GetDGROUP:far
  15.                 extrn __FpeHandler:DIST
  16.  
  17. _TEXT           segment
  18.                 assume cs:_TEXT
  19.  
  20.                 public  __fperr
  21.  
  22. __fperr         proc    far
  23.                 push    ds
  24.                 call    __GetDGROUP
  25.                 mov     ds, ax
  26.                 call    __FpeHandler
  27.                 pop     ds
  28.                 ret
  29. __fperr         endp
  30.  
  31.                 ends
  32.                 end
  33.  
  34.