home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual 15
/
CDACTUAL15.iso
/
cdactual
/
program
/
asm
/
PJ96.ZIP
/
ALIB.ZIP
/
ISGRAPH.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1991-08-22
|
240 b
|
22 lines
include asm.inc
public isgraph
.code
;; isgraph
;
; entry AL character
; exit Zf if printable character (not space)
;
isgraph proc
cmp al,'!'
jb isg1
cmp al,'~'
ja isg1
cmp al,al
isg1: ret
isgraph endp
end