gb_test2
annotate gensine @ 4:216bdbc75cf4
optionally use the generated chessboard instead of the logo to fit in my 2k
test ROM
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Thu, 10 Jan 2019 06:38:13 +0200 |
parents | |
children |
rev | line source |
---|---|
nuclear@0 | 1 #!/usr/bin/python |
nuclear@0 | 2 |
nuclear@0 | 3 import math |
nuclear@0 | 4 |
nuclear@0 | 5 def main(): |
nuclear@0 | 6 s = 16 |
nuclear@0 | 7 x = 0.0 |
nuclear@0 | 8 dx = 2.0 * math.pi / 256.0 |
nuclear@0 | 9 for i in range(256): |
nuclear@0 | 10 sx = math.sin(x) * s# + s |
nuclear@0 | 11 print "\tdb ", int(sx) |
nuclear@0 | 12 x += dx |
nuclear@0 | 13 |
nuclear@0 | 14 main() |