mirror of
https://github.com/cc65/cc65.git
synced 2025-01-14 00:32:08 +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:
parent
bd9328115d
commit
4b5cd3b981
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user