1
0
mirror of https://github.com/KarolS/millfork.git synced 2025-01-14 01:29:57 +00:00
millfork/examples/a8/rainbow.mfk

10 lines
128 B
Plaintext
Raw Normal View History

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