home *** CD-ROM | disk | FTP | other *** search
- PAGE 60,132
- TITLE TESS_END.ASM -- Init routines for assembler (COM) version
- ;----------------------------------------------------------------------------
- SUBTTL TesSeRact Revision Level 1
- ;-----------------------------------------------------------------------------
- ; TesSeRact(tm) -- A Library of Routines for Creating Ram-Resident (TSR)
- ; programs for the IBM PC and compatible Personal
- ; Computers.
- ;
- ;The software, documentation and source code are:
- ;
- ; Copyright (C) 1986, 1987, 1988 Tesseract Development Team
- ; All Rights Reserved
- ;
- ; c/o Chip Rabinowitz
- ; Innovative Data Concepts
- ; 2084 Woodlawn Avenue
- ; Glenside, PA 19038
- ; 1-215-884-3373
- ;
- ;-----------------------------------------------------------------------------
- ; This product supports the TesSeRact Standard for Ram-Resident Program
- ; Communication. For information about TesSeRact, contact the TesSeRact
- ; Development Team at:
- ; Compuserve: 70731,20
- ; MCIMAIL: 315-5415
- ; This MCIMAIL Account has been provided to the TesSeRact Development
- ; Team by Borland International, Inc. The TesSeRact Development Team
- ; is in no way associated with Borland International, Inc.
- ;-----------------------------------------------------------------------------
-
- ASMCOM EQU 1 ;use ASM calling conventions
- TP4 equ 1 ;also use TP4 stuff (no headers)
-
- INCLUDE TESS.INC
- INCLUDE MIXED.INC
-
- .model small
-
- .CODE
-
- ;
- ; TesSeRact Internal Routines from TESS_ASM.OBJ
- ;
- EXTRN _TESSSETUPINTS:near
- EXTRN _TESSGETPSP:near
- EXTRN _TESS_INTERRUPTRETURN:near
-
- ;
- ; TesSeRact general routines from TESS_ASM.OBJ
- ;
- EXTRN TSRCLEANUP:NEAR
- EXTRN TESSBEEP:near
-
- ;
- ; TesSeRact Data Pointers from TESS_ASM.OBJ
- ;
- EXTRN TESS_GLOBALS:byte
- EXTRN TESS_USERPARMS:byte
- EXTRN _TESS_CPYRT:byte
-
- ;
- ; Source code files
- ;
- INCLUDE TSINIT.ASM ;init routines should be at end
- INCLUDE TSCHKRES.ASM ;int 2f, fn 00h - user routine
- INCLUDE TSSTACK.ASM ;set stack routine
-
- _TEXT ends
-
- END
-