Skip to content

Instantly share code, notes, and snippets.

@tomaes
Created March 8, 2014 18:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomaes/9436492 to your computer and use it in GitHub Desktop.
Save tomaes/9436492 to your computer and use it in GitHub Desktop.
19 bytes text noise effect (c64)
;
; 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