home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1996 December / CD_shareware_12-96.iso / DOS / Programa / CCDL122.ZIP / CLIBS / COMPLIB / 386 / STKCHK.ASM
Encoding:
Assembly Source File  |  1996-07-03  |  178 b   |  12 lines

  1.     .model small
  2.     .code
  3.     public __stackerror
  4.     extrn _printf,_abort
  5. errmsg    db    "stack overflow",10,13,0
  6.  
  7. __stackerror:
  8.     push    offset errmsg
  9.     call    _printf
  10.     jmp    _abort;
  11.  
  12.     end