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

@@ -26,6 +26,7 @@ enum PycMagic {
MAGIC_3_2 = 0x0A0D0C6C,
MAGIC_3_3 = 0x0A0D0C9E,
MAGIC_3_4 = 0x0A0D0CEE,
MAGIC_3_5 = 0x0A0D0D16,
};
#define PYC_VERSION(maj, min) MAGIC_##maj##_##min