home *** CD-ROM | disk | FTP | other *** search
- ;***************************************************************************
- ; STACK.ASM *
- ; MODULE: EMSLIB *
- ; OS: MS-DOS *
- ; VERSION: 1.0 *
- ; DATE: 9/22/91 *
- ; *
- ; Copyright (c) 1991 James W. Birdsall. All Rights Reserved. *
- ; *
- ; Compiles under Turbo Assembler 2.5. *
- ; *
- ; This file is needed when compiling the example program (EMSTEST) in *
- ; tiny model with Borland compilers. A stack is not provided by default *
- ; and TLINK does not have the ability to add one at link time. Including *
- ; this module in the link fixes that. This module is not needed when *
- ; compiling under MSC, since Microsoft's linker can provide a stack at *
- ; link time. *
- ; *
- ;**************************************************************************/
-
- ;*
- ;* model
- ;*
-
- .MODEL small
-
-
- ;*
- ;* includes
- ;*
-
- ;*
- ;* local EQUs
- ;*
-
- ;*
- ;* misc: copyright strings, version macros, etc.
- ;*
-
- ;*
- ;* structure definitions
- ;*
-
- ;*
- ;* OTHER SEGMENTS
- ;*
-
- .STACK 2048
-
-
- ;*
- ;* DATA SEGMENT - global variables
- ;*
-
- ;*
- ;* DATA SEGMENT - static globals
- ;*
-
- ;*
- ;* CODE SEGMENT - functions
- ;*
-
-
- END