home *** CD-ROM | disk | FTP | other *** search
- ;/*
- ; This is a "gate" to LU module, and a place where I store the vital
- ; parameters of the LU module.
- ;
- ; CopyRight 1995. Nicholas Poljakov all rights reserved.
- ;
- ; */
-
- .MODEL LARGE
- PUBLIC _prtable, _svarea
- EXTRN _rout:PROC
- .CODE
- _prtable proc far
- jmp _rout
- _svarea db 24 dup(0) ; area for save envirounment
- db 'LU62'
- _prtable endp
- end
-