mirror of
https://github.com/fumiama/c64-snake.git
synced 2026-06-05 00:32:39 +08:00
10 lines
155 B
NASM
10 lines
155 B
NASM
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||
; calcscore 计算分数,存储到s
|
||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||
calcscore:
|
||
.scope
|
||
inc s
|
||
bne +
|
||
inc s+1
|
||
* rts
|
||
.scend |