1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-06 02:54:33 +00:00
cc65/libsrc/common/isascii.s
2020-02-03 20:45:09 +01:00

28 lines
466 B
ArmAsm

; isascii.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.
;
; int isascii (int c);
;
.export _isascii
_isascii:
cpx #$00 ; Char range ok?
bne @L1 ; Jump if no
tay
bmi @L1
inx
rts
@L1: lda #$00 ; Return false
tax
rts