diff options
| author | KyleMiles <krm504@nyu.edu> | 2022-01-27 22:43:28 -0500 |
|---|---|---|
| committer | KyleMiles <krm504@nyu.edu> | 2022-01-28 00:24:06 -0500 |
| commit | 6812c973c9fa9b4ad642ab81856c05f87bd6fcc4 (patch) | |
| tree | dace4156d03148bcaf02df138ab4e0d93e61bc6f /python/examples/instruction_iterator.py | |
| parent | 519c9db22367f2659d1a54599fab47e6313be06e (diff) | |
Format All Files
Diffstat (limited to 'python/examples/instruction_iterator.py')
| -rw-r--r-- | python/examples/instruction_iterator.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/python/examples/instruction_iterator.py b/python/examples/instruction_iterator.py index 9a5d864a..b5cf426f 100644 --- a/python/examples/instruction_iterator.py +++ b/python/examples/instruction_iterator.py @@ -32,7 +32,6 @@ binja.log_info("START: 0x%x" % bv.start) binja.log_info("ENTRY: 0x%x" % bv.entry_point) binja.log_info("ARCH: %s" % bv.arch.name) binja.log_info("\n-------- Function List --------") - """ print all the functions, their basic blocks, and their il instructions """ for func in bv.functions: binja.log_info(repr(func)) @@ -41,8 +40,6 @@ for func in bv.functions: for insn in block: binja.log_info("\t\t{0}".format(insn)) - - """ print all the functions, their basic blocks, and their mc instructions """ for func in bv.functions: binja.log_info(repr(func)) |
