diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2015-05-27 15:34:32 +0200 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2015-05-27 15:34:32 +0200 |
| commit | fb0e0bf0e6f2407161251ce29b9ce5eff6c5d564 (patch) | |
| tree | 77a76925f71930a9ced711f06dc22605d654c481 /example/disasm/file.py | |
| parent | 7816cf35749e3d282fd13881df6c1766a7cbf4bb (diff) | |
| parent | 85e67bc06a03f02d059d9d91ba88bc6213023d48 (diff) | |
| download | miasm-fb0e0bf0e6f2407161251ce29b9ce5eff6c5d564.tar.gz miasm-fb0e0bf0e6f2407161251ce29b9ce5eff6c5d564.zip | |
Merge pull request #172 from commial/update-test-disasm
TestAll: Update disasm 'file.py' example address
Diffstat (limited to 'example/disasm/file.py')
| -rw-r--r-- | example/disasm/file.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/example/disasm/file.py b/example/disasm/file.py index 5bae0e89..3555ab18 100644 --- a/example/disasm/file.py +++ b/example/disasm/file.py @@ -2,10 +2,11 @@ import sys from miasm2.arch.x86.disasm import dis_x86_32 from miasm2.core.asmbloc import bloc2graph from miasm2.analysis.binary import Container +from pdb import pm if len(sys.argv) != 3: print 'Example:' - print "%s samples/box_upx.exe 0x410f90" % sys.argv[0] + print "%s samples/box_upx.exe 0x407570" % sys.argv[0] sys.exit(0) addr = int(sys.argv[2], 16) |