mirror of
https://github.com/KarolS/millfork.git
synced 2024-12-25 21:29:25 +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
|
||
|
}
|
||
|
}
|