1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

"Apple disk names are null-terminated strings of 16 characters or less (counting the null-terminator)."

git-svn-id: svn://svn.cc65.org/cc65/trunk@5487 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc 2012-02-07 16:14:23 +00:00
parent b944a6acdf
commit 6542cd2ced

View File

@ -37,7 +37,11 @@
ldy #0
@fn_loop:
lda dirEntryBuf+OFF_FNAME,y
.ifdef __GEOS_CBM__
cmp #$a0
.else
cmp #0
.endif
beq @fn_end
sta argv0,y
iny