Allow file names up to 16 chars
git-svn-id: svn://svn.cc65.org/cc65/trunk@1814 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
d0c237bcd8
commit
9227123e16
1 changed files with 3 additions and 2 deletions
|
@ -91,7 +91,7 @@ namecheck:
|
|||
; Check the maximum length, store the character
|
||||
|
||||
nameok: ldx fnlen
|
||||
cpx #16 ; Maximum length reached?
|
||||
cpx #18 ; Maximum length reached?
|
||||
bcs invalidname
|
||||
lda (ptr1),y ; Reload char
|
||||
sta fnbuf,x ; Store into buffer
|
||||
|
@ -130,7 +130,7 @@ namedone:
|
|||
|
||||
.proc fncomplete
|
||||
|
||||
pha ; Save mode
|
||||
pha ; Save mode
|
||||
ldx fnlen
|
||||
lda #','
|
||||
sta fnbuf,x
|
||||
|
@ -167,3 +167,4 @@ fnchars:.byte ".,-_+()"
|
|||
fncharcount = *-fnchars
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue