entropy: more comments

This commit is contained in:
Vince Weaver 2018-05-28 01:32:17 -04:00
parent 8df4d4c3e3
commit de27045079

View File

@ -168,11 +168,10 @@ nextx: ; NEXT X
;============
; 20
nexty: ; NEXT Y
pla
; lda YPOS ; y+=6
adc #5 ; carry always set coming in, so only add 5
; sta YPOS
pha
pla ; YPOS on stack
adc #5 ; y+=6
; carry always set coming in, so only add 5
pha ; YPOS back on stack
cmp #189 ; see if less than 189
bcc yloop ; if so, loop