mirror of
https://github.com/KarolS/millfork.git
synced 2024-10-30 06:24:09 +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()
|
||
|
}
|
||
|
}
|