home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / sigm / vol264 / zlib1.lbr / Z3INI.Z80 < prev    next >
Encoding:
Text File  |  1986-03-23  |  512 b   |  21 lines

  1. ;
  2. ; Z3LIB Module Name:  Z3INI
  3. ; Author:  Richard Conn
  4. ; Z3LIB  Version Number:  1.3
  5. ; Module Version Number:  1.1
  6. ;
  7.     public    z3init
  8.     public    envptr
  9.  
  10. ;
  11. ; Z3INIT accepts as input a pointer to the Z3 Environment Descriptor and
  12. ; saves it away in a global buffer for future reference.
  13. ;
  14. z3init:
  15.     ld    (envptr),hl
  16.     ret
  17. envptr:
  18.     ds    2        ; global buffer for use by other Z3 routines
  19.  
  20.     end
  21.