8bitworkshop/tools/mkztab.py

10 lines
103 B
Python

d = 16
s = 800
for n in range(0,128):
z = n/2+d
y = s/z
print("%d," % y, end='')
print()