Changes from Maciej

git-svn-id: svn://svn.cc65.org/cc65/trunk@245 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2000-07-31 22:04:21 +00:00
parent 150db59a80
commit f1453ff273
4 changed files with 31 additions and 18 deletions

View File

@@ -1,8 +1,8 @@
;
; Maciej 'YTM/Alliance' Witkowiak
; Maciej 'YTM/Elysium' Witkowiak
;
; 25.12.99
; 25.12.99, 30.7.2000
; char FindFTypes (char *buffer, char fileType, char fileMax, char *Class);
@@ -17,6 +17,7 @@ _FindFTypes:
stx r10H
jsr popa
sta r7H
sta tmpFileMax
jsr popa
sta r7L
jsr popax
@@ -24,5 +25,10 @@ _FindFTypes:
stx r6H
jsr FindFTypes
stx errno
txa
; return (fileMax - r7H)
lda tmpFileMax
sec
sbc r7H
rts
tmpFileMax: .byte 0