home *** CD-ROM | disk | FTP | other *** search
- ideal ; Set up in ideal mode
- model tiny ; This is done in tiny model
-
- ;******************* _stack_ *********************************************
- ; Provides a stack for the BGI driver to use while it's running.
- ;
- ; V 1.00 18/05/90 Robert Adsett.
- ; V 1.01 15/06/90 Robert Adsett. Eliminate DOSSEG ordering.
- ;
- ; (C) Robert Adsett 1990,1990
- ;*************************************************************************
-
- dataseg ; Start of the data segment
-
- ;*************************************************************************
- ; Declare publics and externals.
- ;*************************************************************************
-
- public _stack_ ; Make the stack public so it can be
- ;switched to.
-
- dw 256 dup ('**')
- _stack_ dw '^^'
-
- ends
- end
-
-