Created
August 13, 2019 23:40
-
-
Save fsphil/01bda1a9dd58c219002ddd6e18b36c3f to your computer and use it in GitHub Desktop.
32 byte X
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ov = $90 ; == $40, initial value for the overflow counter | |
ct = $D5 ; == $4F / 79, number of passes. Decrementing, finished at -1 | |
sp = $D1 ; == $07C0, pointer to the bottom line (only set after scolling) | |
* = $0304 - (end - scroll) | |
scroll: jsr $E8EA | |
loop: ldy ct | |
lda #$A0 | |
sta $D020, y | |
sta (sp), y | |
sta $07C0 - $B, x | |
inc $D6 | |
adc ov | |
sta ov | |
dec ct | |
bmi * | |
bcc loop - 1 | |
jmp scroll | |
end: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment