1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-17 09:29:10 +00:00
cc65/libsrc/common/islower.s

16 lines
208 B
ArmAsm
Raw Normal View History

;
; Ullrich von Bassewitz, 02.06.1998
;
; int islower (int c);
;
.export _islower
.import __ctype
_islower:
tay
lda __ctype,y ; Get character classification
and #$01 ; Mask lower char bit
rts