home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ddrivers.zip / UTILS / INT3.ASM < prev    next >
Assembly Source File  |  1992-07-06  |  305b  |  23 lines

  1. ;  int3.asm
  2. ;
  3. ;  this is NOT a DevHlp, but merely a simple way to break the
  4. ;  KDB at a specified point
  5. ;
  6. ;  C calling sequence: 
  7. ;  INT3();
  8. ;
  9.         .286
  10.     public     INT3
  11.     assume   CS: _TEXT
  12. _TEXT    segment word public 'CODE'
  13. INT3    proc near
  14.  
  15.     int       3
  16.     ret
  17.  
  18. INT3    endp
  19. _TEXT    ends
  20.     end
  21.  
  22.  
  23.