mirror of
https://github.com/KarolS/millfork.git
synced 2024-11-01 05:05:32 +00:00
13 lines
194 B
Plaintext
13 lines
194 B
Plaintext
void main() {
|
|
init_rw_memory()
|
|
byte y
|
|
while true {
|
|
start_frame()
|
|
for y,0,until,192 {
|
|
COLUBK = y
|
|
wsync()
|
|
}
|
|
end_frame()
|
|
}
|
|
}
|