This commit is contained in:
Irmen de Jong 2019-07-16 21:31:14 +02:00
parent 4dbf4b2005
commit c0e83ef8df
2 changed files with 14 additions and 15 deletions

View File

@ -3,8 +3,6 @@
%zeropage basicsafe %zeropage basicsafe
; The classic number guessing game. ; The classic number guessing game.
; This version uses mostly high level subroutine calls and loops.
; It's more readable than the low-level version, but produces a slightly larger program.
~ main { ~ main {

View File

@ -53,7 +53,8 @@
~ irq { ~ irq {
sub irq() {
sub irq() {
c64.EXTCOL-- c64.EXTCOL--
; float up & wobble horizontally ; float up & wobble horizontally
@ -67,6 +68,6 @@ sub irq() {
} }
c64.EXTCOL++ c64.EXTCOL++
} }
} }