Filenames and smol opty

This commit is contained in:
Pecusx
2025-07-31 15:25:58 +02:00
parent 7ba725e7a2
commit a0aa1b0191
2 changed files with 9 additions and 15 deletions
+9 -15
View File
@@ -12,7 +12,7 @@
;--------------------------------------------------- ;---------------------------------------------------
.macro build .macro build
dta d"1.01" ; number of this build (4 bytes) dta d"1.02" ; number of this build (4 bytes)
.endm .endm
.macro RMTSong .macro RMTSong
@@ -3195,22 +3195,13 @@ ScoreReady
.proc ScoreToBuffer .proc ScoreToBuffer
;-------------------------------------------------- ;--------------------------------------------------
; points ; points
lda score ldx #3 ; 4 digits
@ lda score,x
sec sec
sbc #("0"-'0') sbc #("0"-'0')
sta hs_posX+6 sta hs_posX+6,x
lda score+1 dex
sec bpl @-
sbc #("0"-'0')
sta hs_posX+7
lda score+2
sec
sbc #("0"-'0')
sta hs_posX+8
lda score+3
sec
sbc #("0"-'0')
sta hs_posX+9
; time ; time
lda timer lda timer
sec sec
@@ -4112,6 +4103,9 @@ hs_posX
.by "0000000000 NEW " ; buffer for last score .by "0000000000 NEW " ; buffer for last score
hs_def_name hs_def_name
.by "A " .by "A "
.by "("
build
.by ")"
;------------------------------------------------- ;-------------------------------------------------
;RMT PLAYER variables ;RMT PLAYER variables
.IF RMT = 2 .IF RMT = 2
Binary file not shown.