We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea1d9f5 commit 9434915Copy full SHA for 9434915
evmasm
@@ -52,7 +52,7 @@ def main():
52
53
insns = list(EVMAsm.disassemble_all(buf))
54
for i in insns:
55
- args.output.write(str(i) + "\n")
+ args.output.write("%08x: %s\n" %(i.pc, str(i)))
56
57
if __name__ == "__main__":
58
main()
0 commit comments