mirror of
https://github.com/blondie7575/GSCats.git
synced 2024-11-05 02:08:21 +00:00
38 lines
620 B
Python
Executable File
38 lines
620 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
|
|
def main(argv):
|
|
|
|
print ("vramYOffset:",end="")
|
|
rowCount = 19
|
|
|
|
for jump in range(0,200):
|
|
rowCount += 1
|
|
if (rowCount==20):
|
|
print ("\n\t.word ", end="")
|
|
rowCount=0
|
|
|
|
print ("$%04x" % (jump*160), end="")
|
|
if (rowCount<19):
|
|
print (",", end="")
|
|
|
|
print ("\n\vramRowInvertedSpanLookup:",end="")
|
|
rowCount = 19
|
|
|
|
for jump in range(0,200):
|
|
rowCount += 1
|
|
if (rowCount==20):
|
|
print ("\n\t.word ", end="")
|
|
rowCount=0
|
|
|
|
print ("$%04x" % ((200-jump)*160+8192), end="")
|
|
if (rowCount<19):
|
|
print (",", end="")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main(sys.argv[1:])
|
|
|