home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Z3LIB Module Name: Z3GFN1
- ; Author: Richard Conn
- ; Z3LIB Version Number: 1.0
- ; Module Version Number: 1.0
- ; Module Entry Points:
- ; GETFN1
- ; Module External References:
- ; ENVPTR
- ;
- ext envptr
-
- ;
- ; GETFN1 returns the address of the first filename.typ entry in HL.
- ; HL only is affected.
- ;
- getfn1::
- push psw
- push d
- lhld envptr ;pt to environment
- lxi d,47H ;pt to file name entry
- dad d
- pop d ;restore regs
- pop psw
- ret
-
- end