home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Z3LIB Module Name: Z3QPSTR
- ; Author: Richard Conn
- ; Z3LIB Version Number: 1.3
- ; Module Version Number: 1.1
- ;
- public qpstr
-
- ext getquiet,pstr
-
- ;
- ; QPSTR prints the string pted to by HL if the quiet flag
- ; says it is OK to do so.
- ;
- qpstr:
- push af ;affect no regs
- call getquiet ;get flag
- jp z,notquiet ;not quiet, so print
- pop af ;restore PSW
- ret
- notquiet:
- pop af ;restore PSW
- jp pstr ;perform normal print
-
- end