1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2026-04-25 18:47:56 +00:00

AY38910_Audio

This commit is contained in:
Steven Hugg
2017-01-26 21:59:34 -05:00
parent 0f26d3cc35
commit 5851394f40
9 changed files with 63 additions and 17 deletions
+2 -1
View File
@@ -50,7 +50,8 @@ for ch in range(lochar,hichar+1):
rot2output.append(0)
for x in range(0,height):
for y in range(0,height):
rotoutput[-7+x] |= (((output[-1-y]>>x)&1)<<y)
#rotoutput[-7+x] |= (((output[-1-y]>>x)&1)<<y)
rotoutput[-1-x] |= (((output[-1-y]>>x)&1)<<y)
rot2output[-1-x] |= (((output[-7+y]>>x)&1)<<y)
def tohex(v):