home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / SYS / UNWIND.S < prev    next >
Encoding:
Text File  |  1993-01-02  |  362 b   |  15 lines

  1. / sys/unwind.s (emx+gcc) -- Copyright (c) 1992-1993 by Eberhard Mattes */
  2.  
  3.         .globl  ___unwind2
  4.  
  5. / void __unwind2 (void *xcpt_reg_ptr)
  6.  
  7. ___unwind2:
  8.         movl    1*4(%esp), %eax         / xcpt_reg_ptr
  9.         pushl   $0
  10.         pushl   $L_cont
  11.         pushl   %eax
  12.         call    _DosUnwindException
  13. L_cont: addl    $3*4, %esp
  14.         ret
  15.