1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-05-31 18:41:30 +00:00
millfork/examples/a8/rainbow.mfk

10 lines
128 B
Plaintext
Raw Permalink Normal View History

2019-10-21 20:27:50 +00:00
byte clock @20
byte a
void main() {
while(true){
a = (antic_vcount + clock) << 1
antic_wsync = a
gtia_colpf2 = a
}
}