home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MAGAZINE / MISC / PJ_9_6.ZIP / ALIB.ZIP / ISLOWER.ASM < prev    next >
Encoding:
Assembly Source File  |  1991-08-22  |  261 b   |  22 lines

  1.     include    asm.inc
  2.  
  3.     public    islower
  4.  
  5.     .code
  6.  
  7. ;;    islower
  8. ;
  9. ;    entry    AL    character
  10. ;    exit    Zf    if a..z
  11. ;
  12. islower proc
  13.     cmp    al,'z'
  14.     ja    ilo1            ; if not a..z
  15.     cmp    al,'a'
  16.     jb    ilo1            ; if not a..z
  17.     cmp    al,al            ; else set Zf
  18. ilo1:    ret
  19. islower endp
  20.  
  21.     end
  22.