home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Z3LIB Module Name: Z3INI
- ; Author: Richard Conn
- ; Z3LIB Version Number: 1.3
- ; Module Version Number: 1.1
- ;
- public z3init
- public envptr
-
- ;
- ; Z3INIT accepts as input a pointer to the Z3 Environment Descriptor and
- ; saves it away in a global buffer for future reference.
- ;
- z3init:
- ld (envptr),hl
- ret
- envptr:
- ds 2 ; global buffer for use by other Z3 routines
-
- end