1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-02 15:29:33 +00:00

Fixed variable names

git-svn-id: svn://svn.cc65.org/cc65/trunk@2783 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-12-19 12:39:21 +00:00
parent bd9328115d
commit 4b5cd3b981
2 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@ SendHead = $24 ; Head of send buffer
SendTail = $25 ; Tail of send buffer SendTail = $25 ; Tail of send buffer
SendFreeCnt = $26 ; Number of bytes free in send buffer SendFreeCnt = $26 ; Number of bytes free in send buffer
FNAM := $90 ; File name address FNAM_ADR := $90 ; File name address
FNAM_SEG := $92 ; Unused FNAM_SEG := $92 ; Unused
SaveAdrLow = $93 SaveAdrLow = $93
SaveAdrHi = $94 SaveAdrHi = $94

View File

@ -14,9 +14,9 @@
.proc SETNAM .proc SETNAM
sta FileNameLen sta FNAM_LEN
stx FileNameAdrLo stx FNAM_ADR
sty FileNameAdrHi sty FNAM_ADR+1
rts rts
.endproc .endproc