forked from jakiki6/smb1-disasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
genie
executable file
·39 lines (35 loc) · 1.21 KB
/
genie
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/env python3
def parse_values(code):
map = {"a":0x0,"p":0x1,"z":0x2,"l":0x3,"g":0x4,"i":0x5,"t":0x6,"y":0x7,"e":0x8,"o":0x9,"x":0xa,"u":0xb,"k":0xc,"s":0xd,"v":0xe,"n":0xf}
code = code.lower()
n0 = map[code[0]]
n1 = map[code[1]]
n2 = map[code[2]]
n3 = map[code[3]]
n4 = map[code[4]]
n5 = map[code[5]]
address = 16 + ((n3 & 7) << 12) | ((n5 & 7) << 8) | ((n4 & 8) << 8) | ((n2 & 7) << 4) | ((n1 & 8) << 4) | (n4 & 7) | (n3 & 8)
data = ((n1 & 7) << 4) | ((n0 & 8) << 4) | (n0 & 7) | (n5 & 8)
return (address, data)
codes = []
while True:
code = input("Code (leave empty to terminate): ")
if code == "":
break
codes.append(code)
patches = []
for code in codes:
patch = parse_values(code)
if patch == None:
continue
if patch[0] > (32768 + 8192): # Not in code range
print("{}: {} isn't in range".format(hex(patch[0] + 0x8000), hex(patch[1])))
continue
patches.append(patch)
with open("smb.nes", "rb") as file:
buf = bytearray(file.read())
for patch in patches:
buf[patch[0] + 16] = patch[1]
print("Patched {}: {}".format(hex(patch[0] + 0x8000), hex(patch[1])))
with open("smb.nes", "wb") as file:
file.write(buf)