mirror of
https://github.com/fumiama/c64-snake.git
synced 2026-06-05 08:40:26 +08:00
9 lines
146 B
NASM
9 lines
146 B
NASM
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
; append 增加蛇长
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
append:
|
|
.scope
|
|
inc c ; 蛇长加一
|
|
; 其他代码
|
|
rts
|
|
.scend |