mirror of
https://github.com/KarolS/millfork.git
synced 2024-10-31 14:04:58 +00:00
10 lines
128 B
Plaintext
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
|
|
}
|
|
} |