cc65/libsrc/common/ctype_preprocessor.s

51 lines
1.3 KiB
ArmAsm

; ctype_preprocessor.s
;
; This file is part of
; cc65 - a freeware C compiler for 6502 based systems
;
; https://github.com/cc65/cc65
;
; See "LICENSE" file for legal information.
;
; ctype_preprocessor(int c)
;
; converts a character to test via the is*-functions to the matching ctype-masks
; If c is out of the 8-bit range, the function returns with carry set and accu cleared.
; Return value is in accu and x has to be always clear when returning
; (makes calling code shorter)!
;
; IMPORTANT: stricmp, strlower, strnicmp, strupper and atoi rely that Y is not changed
; while calling this function!
;
.export ctype_preprocessor
.export ctype_preprocessor_no_check
.import __ctype
.import __ctypeIdx
ctype_preprocessor:
cpx #$00 ; char range ok?
bne SC ; branch if not
ctype_preprocessor_no_check:
lsr a
tax
lda __ctypeIdx, x
bcc @lowerNibble
@upperNibble:
lsr a
lsr a
lsr a
lsr a
clc ; remove out of bounds flag
@lowerNibble:
and #%1111
tax
lda __ctype, x
ldx #0
rts
SC: sec
lda #0
tax
rts