mirror of
https://github.com/KarolS/millfork.git
synced 2025-02-06 01:30:13 +00:00
21 lines
303 B
Plaintext
21 lines
303 B
Plaintext
|
void main(){
|
||
|
array(byte) stars[256] align(fast)
|
||
|
byte i
|
||
|
|
||
|
os_PCOLR0 = $e
|
||
|
gtia_grafm = $e
|
||
|
|
||
|
for i:stars {
|
||
|
stars[i] = pokey_random
|
||
|
}
|
||
|
|
||
|
while true {
|
||
|
if antic_vcount == 0 {
|
||
|
for i:stars {
|
||
|
antic_wsync = 1
|
||
|
gtia_hposm0 = stars[i]
|
||
|
stars[i] += 1
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|