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

  1.         PAGE 60,132
  2.         TITLE TESS_END.ASM -- Init routines for assembler (COM) version
  3. ;----------------------------------------------------------------------------
  4. SUBTTL  TesSeRact Revision Level 1
  5. ;-----------------------------------------------------------------------------
  6. ;   TesSeRact(tm) -- A Library of Routines for Creating Ram-Resident (TSR)
  7. ;                    programs for the IBM PC and compatible Personal
  8. ;                    Computers.
  9. ;
  10. ;The software, documentation and source code are: 
  11. ;       Copyright (C) 1986, 1987, 1988 Tesseract Development Team
  12. ;       All Rights Reserved 
  13. ;       c/o Chip Rabinowitz
  14. ;       Innovative Data Concepts
  15. ;       2084 Woodlawn Avenue
  16. ;       Glenside, PA 19038
  17. ;       1-215-884-3373
  18. ;
  19. ;-----------------------------------------------------------------------------
  20. ;   This product supports the TesSeRact Standard for Ram-Resident Program 
  21. ;   Communication.  For information about TesSeRact, contact the TesSeRact 
  22. ;   Development Team at:
  23. ;       Compuserve:    70731,20
  24. ;       MCIMAIL:       315-5415
  25. ;   This MCIMAIL Account has been provided to the TesSeRact Development
  26. ;   Team by Borland International, Inc.  The TesSeRact Development Team
  27. ;   is in no way associated with Borland International, Inc.
  28. ;-----------------------------------------------------------------------------
  29.  
  30. ASMCOM  EQU     1                       ;use ASM calling conventions
  31. TP4     equ     1                       ;also use TP4 stuff (no headers)
  32.  
  33. INCLUDE TESS.INC
  34. INCLUDE MIXED.INC
  35.  
  36. .model  small
  37.  
  38. .CODE
  39.  
  40. ;
  41. ; TesSeRact Internal Routines from TESS_ASM.OBJ
  42. ;
  43. EXTRN _TESSSETUPINTS:near
  44. EXTRN _TESSGETPSP:near
  45. EXTRN _TESS_INTERRUPTRETURN:near
  46.  
  47. ;
  48. ; TesSeRact general routines from TESS_ASM.OBJ
  49. ;
  50. EXTRN TSRCLEANUP:NEAR
  51. EXTRN TESSBEEP:near
  52.  
  53. ;
  54. ; TesSeRact Data Pointers from TESS_ASM.OBJ
  55. ;
  56. EXTRN TESS_GLOBALS:byte
  57. EXTRN TESS_USERPARMS:byte
  58. EXTRN _TESS_CPYRT:byte
  59.  
  60. ;
  61. ; Source code files
  62. ;
  63. INCLUDE TSINIT.ASM                      ;init routines should be at end
  64. INCLUDE TSCHKRES.ASM                    ;int 2f, fn 00h - user routine
  65. INCLUDE TSSTACK.ASM                     ;set stack routine
  66.  
  67. _TEXT ends
  68.  
  69.         END
  70.