1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-30 16:29:58 +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
SendFreeCnt = $26 ; Number of bytes free in send buffer
FNAM := $90 ; File name address
FNAM_ADR := $90 ; File name address
FNAM_SEG := $92 ; Unused
SaveAdrLow = $93
SaveAdrHi = $94

View File

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