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
/
ISPUNCT.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Assembly Source File
|
1991-08-22
|
388 b
|
34 lines
include asm.inc
public ispunct
.code
;; ispunct
;
; entry AL character
; exit Zf if !"#%&'();<=>?[\]*+,-./:^_{|}~
;
ispunct proc
cmp al,'!'
jbe isp2
cmp al,'/'
jbe isp1
cmp al,':'
jbe isp2
cmp al,'@'
jbe isp1
cmp al,'['
jbe isp2
cmp al,'`'
jbe isp1
cmp al,'{'
jbe isp2
cmp al,'~'
ja isp2
isp1: cmp al,al
isp2: ret
ispunct endp
end