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

added a8_hardware files

This commit is contained in:
Freddy Offenga
2019-10-21 22:27:50 +02:00
parent f5b6d9999c
commit f3ecf733b6
7 changed files with 167 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
byte clock @20
byte a
void main() {
while(true){
a = (antic_vcount + clock) << 1
antic_wsync = a
gtia_colpf2 = a
}
}