Add Python 3.5 disassembly support

This commit is contained in:
Michael Hansen
2015-10-01 16:06:09 -07:00
parent 6883a7ecf0
commit 5fae3e2d1f
9 changed files with 240 additions and 210 deletions

View File

@@ -25,9 +25,9 @@ if len(sys.argv) != 3:
if not os.path.exists(sys.argv[2]):
os.mkdir(sys.argv[2])
maplist = [ 10, 11, 13, 14, 15, 16,
maplist = [ 10, 11, 13, 14, 15, 16,
20, 21, 22, 23, 24, 25, 26, 27,
30, 31, 32, 33, 34 ]
30, 31, 32, 33, 34, 35 ]
for mapver in maplist:
infile = open(os.path.join(sys.argv[1], 'python_%d.map' % mapver), 'rt')