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
/
ISXDIGIT.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-23
|
385 b
|
28 lines
include asm.inc
public isxdigit
.code
extn isdigit
;; isxdigit
;
; entry AL character
; exit Zf if 0..9 A..F a..f
;
isxdigit proc
cmp al,'f'
jae ixd2 ; if f or non-xdigit
cmp al,'a'
jae ixd1 ; if a..f
cmp al,'F'
jae ixd2 ; if F or non-xdigit
cmp al,'A'
jae ixd1 ; if A..F
jmp isdigit
ixd1: cmp al,al
ixd2: ret
isxdigit endp
end