mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
def6300556
git-svn-id: svn://svn.cc65.org/cc65/trunk@865 b7a2c559-68d2-44c3-8de9-860c34a00d81
22 lines
315 B
ArmAsm
22 lines
315 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 02.06.1998
|
|
;
|
|
; int isxdigit (int c);
|
|
;
|
|
|
|
.export _isxdigit
|
|
.include "ctype.inc"
|
|
|
|
_isxdigit:
|
|
cpx #$00 ; Char range ok?
|
|
bne @L1 ; Jump if no
|
|
tay
|
|
lda __ctype,y ; Get character classification
|
|
and #CT_XDIGIT ; Mask xdigit bit
|
|
rts
|
|
|
|
@L1: lda #$00 ; Return false
|
|
tax
|
|
rts
|
|
|