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 / TOLOWER.ASM < prev    next >
Encoding:
Assembly Source File  |  1991-06-25  |  215 b   |  22 lines

  1.     include    asm.inc
  2.  
  3.     public    tolower
  4.  
  5.     .code
  6.  
  7. ;;    tolower
  8. ;
  9. ;    entry    AL    char
  10. ;    exit    AL    lower cased AL
  11. ;
  12. tolower proc
  13.     cmp    al,'A'
  14.     jb    tol1
  15.     cmp    al,'Z'
  16.     ja    tol1
  17.     or    al,20h
  18. tol1:    ret
  19. tolower endp
  20.  
  21.     end
  22.