1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-04 13:29:35 +00:00

Fixed a bug: Closing all files on exit did not work

git-svn-id: svn://svn.cc65.org/cc65/trunk@3175 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-08-09 10:38:12 +00:00
parent 7c1590b5d5
commit 5681334d52

View File

@ -30,8 +30,8 @@
.proc closeallfiles
ldx #MAX_FDS
loop: lda fdtab-1,x
ldx #MAX_FDS-1
loop: lda fdtab,x
beq next ; Skip unused entries
; Close this file
@ -46,7 +46,7 @@ loop: lda fdtab-1,x
; Next file
next: dex
bne loop
bpl loop
rts