1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

typo in the doc corrected, tabs adjusted

git-svn-id: svn://svn.cc65.org/cc65/trunk@5964 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
silverdr 2013-01-15 11:30:11 +00:00
parent 9fce84c722
commit deb18b8e1e
3 changed files with 3 additions and 3 deletions

View File

@ -1694,7 +1694,7 @@ either a string or an expression.
<tscreen><verb>
.struct Point ; Struct size = 4
xcoord .word
xcoord .word
ycoord .word
.endstruct
P: .tag Point ; Declare a point

View File

@ -12,7 +12,7 @@ _isalpha:
bne @L1 ; Jump if no
tay
lda __ctype,y ; Get character classification
and #CT_ALPHA ; Mask character bits
and #CT_ALPHA ; Mask character bits
rts
@L1: lda #$00 ; Return false

View File

@ -12,7 +12,7 @@ _isdigit:
bne @L1 ; Jump if no
tay
lda __ctype,y ; Get character classification
and #CT_DIGIT ; Mask digit bit
and #CT_DIGIT ; Mask digit bit
rts
@L1: lda #$00 ; Return false