mirror of
https://github.com/KarolS/millfork.git
synced 2024-12-25 21:29:25 +00:00
12 lines
173 B
Plaintext
12 lines
173 B
Plaintext
|
void main() {
|
||
|
byte y
|
||
|
while true {
|
||
|
start_frame()
|
||
|
for y,0,until,192 {
|
||
|
COLUBK = y
|
||
|
wsync()
|
||
|
}
|
||
|
end_frame()
|
||
|
}
|
||
|
}
|