1
0
mirror of https://github.com/KarolS/millfork.git synced 2026-04-25 19:17:54 +00:00

Preliminary Atari 2600 support

This commit is contained in:
Karol Stasiak
2018-04-03 23:13:57 +02:00
parent 3296d5a201
commit 7eab7c439e
8 changed files with 170 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
void main() {
byte y
while true {
start_frame()
for y,0,until,192 {
COLUBK = y
wsync()
}
end_frame()
}
}