home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / teseract / source / tsrestsr.asm < prev    next >
Encoding:
Assembly Source File  |  1988-10-02  |  1.6 KB  |  52 lines

  1. IFNDEF TP4
  2.         PAGE 60,132
  3. ;   
  4. ;----------------------------------------------------------------------------
  5. SUBTTL  TesSeRact Revision Level 1
  6. ;-----------------------------------------------------------------------------
  7. ;   TesSeRact(tm) -- A Library of Routines for Creating Ram-Resident (TSR)
  8. ;                    programs for the IBM PC and compatible Personal
  9. ;                    Computers.
  10. ;
  11. ;The software, documentation and source code are: 
  12. ;       Copyright (C) 1986, 1987, 1988 Tesseract Development Team
  13. ;       All Rights Reserved 
  14. ;       c/o Chip Rabinowitz
  15. ;       Innovative Data Concepts
  16. ;       2084 Woodlawn Avenue
  17. ;       Glenside, PA 19038
  18. ;       1-215-884-3373
  19. ;
  20. ;-----------------------------------------------------------------------------
  21. ;   This product supports the TesSeRact Standard for Ram-Resident Program 
  22. ;   Communication.  For information about TesSeRact, contact the TesSeRact 
  23. ;   Development Team at:
  24. ;       Compuserve:    70731,20
  25. ;       MCIMAIL:       315-5415
  26. ;   This MCIMAIL Account has been provided to the TesSeRact Development
  27. ;   Team by Borland International, Inc.  The TesSeRact Development Team
  28. ;   is in no way associated with Borland International, Inc.
  29. ;-----------------------------------------------------------------------------
  30.  
  31. INCLUDE TESS.INC
  32. INCLUDE mixed.inc
  33.  
  34. .MODEL small
  35. .CODE
  36.  
  37. ENDIF
  38.  
  39. hProc <TSRESTART FAR>, <USES SI,DI>, TsrIdNum:word
  40.  
  41.         mov     ax,5453h
  42.         mov     bx,13h
  43.         mov     cx,TsrIdNum             ;multiplex function 13h
  44.         int     2fh
  45.  
  46.         hRet
  47. hEndp
  48.  
  49. ENDIT
  50.