mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-22 16:34:15 +00:00
10 lines
218 B
Python
10 lines
218 B
Python
|
#!/usr/bin/python
|
||
|
|
||
|
#Print Atari 2600 Timer Values
|
||
|
#Value to Write to TIM64T to wait desired number of scanlines
|
||
|
|
||
|
for scanlines in range(0,262):
|
||
|
print scanlines, "\t", scanlines*72/64, "\t", scanlines*72.0/64
|
||
|
|
||
|
|