1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-05-29 04:41:30 +00:00
millfork/examples/a8/rainbow.mfk
2019-10-21 22:27:50 +02:00

10 lines
128 B
Plaintext

byte clock @20
byte a
void main() {
while(true){
a = (antic_vcount + clock) << 1
antic_wsync = a
gtia_colpf2 = a
}
}