Created
March 8, 2014 18:27
-
-
Save tomaes/9436492 to your computer and use it in GitHub Desktop.
19 bytes text noise effect (c64)
This file contains hidden or 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
; | |
; fill screen with 'text noise' (19 bytes with SEI) | |
; | |
* = $1000 | |
SEI | |
loop EOR $D012 | |
STA $0400,y | |
STA $0400+256,y | |
STA $0400+512,y | |
STA $0400+768,y | |
DEY | |
BVC loop | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment