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 / ISGRAPH.ASM < prev    next >
Encoding:
Assembly Source File  |  1991-08-22  |  240 b   |  22 lines

  1.     include    asm.inc
  2.  
  3.     public    isgraph
  4.  
  5.     .code
  6.  
  7. ;;    isgraph
  8. ;
  9. ;    entry    AL    character
  10. ;    exit    Zf    if printable character (not space)
  11. ;
  12. isgraph proc
  13.     cmp    al,'!'
  14.     jb    isg1
  15.     cmp    al,'~'
  16.     ja    isg1
  17.     cmp    al,al
  18. isg1:    ret
  19. isgraph endp
  20.  
  21.     end
  22.