i'm an idiot

wow i am so dumb
This commit is contained in:
CPunch 2019-08-15 15:04:35 -05:00 committed by GitHub
parent a6f1318373
commit 82fea6cf8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ def get_bits(num, p, k):
kBitSubStr = binary[start : end]
# convert extracted sub-string into decimal again
return (int(kBitSubStr,2) % 256)
return (int(kBitSubStr,2))
class LuaCompiler:
def __init__(self):
@ -178,7 +178,7 @@ class LuaCompiler:
elif instruction['TYPE'] == "ABx":
instruction['Bx'] = get_bits(data, 15, 32)
elif instruction['TYPE'] == "AsBx":
instruction['sBx'] = get_bits(data, 15, 32) #- 131071
instruction['sBx'] = get_bits(data, 15, 32) - 131071
chunk['INSTRUCTIONS'][i] = instruction