home *** CD-ROM | disk | FTP | other *** search
- ; Library: ZSLIB
- ; Version: 3.0
- ; Module: REVCAS
- ; Version: 1.0
- ; Author: Gene Pizzetta
- ; Date: July 15, 1991
- ;
- ; REVCAS -- Reverses case of alphabetic character in A.
- ;
- ; Entry: A = character
- ; Exit: A = character with case reversed
- ; Uses: AF
- ; Notes: High bits are reset
- ;
- PUBLIC REVCAS
- ;
- EXTRN UNCAPS ; ZSLIB
- EXTRN CAPS ; SYSLIB
- ;
- REVCAS: and 7Fh ; reset high bit
- cp 'a' ; less than lower-case?
- jp m,UNCAPS ; yes, jump to CAPS and return
- jp CAPS ; otherwise, jump to UNCAPS and return
- ;
- end