diff options
| author | Ajax <commial@gmail.com> | 2016-01-26 17:15:22 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2016-01-26 17:15:22 +0100 |
| commit | d6222c4383891c6706ce70ec7750b42ee24e1cfc (patch) | |
| tree | 1ca51aab9e0908e3f11b0cccc7ad7f50be349f67 /miasm2/core/parse_asm.py | |
| parent | 2a3cca15ca50ae20a56f12fc92f9c8f26909092b (diff) | |
| download | focaccia-miasm-d6222c4383891c6706ce70ec7750b42ee24e1cfc.tar.gz focaccia-miasm-d6222c4383891c6706ce70ec7750b42ee24e1cfc.zip | |
Rename BasicBlocks -> AsmCFG, more comprehensible, include "graph"
Diffstat (limited to 'miasm2/core/parse_asm.py')
| -rw-r--r-- | miasm2/core/parse_asm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/core/parse_asm.py b/miasm2/core/parse_asm.py index 304d0673..aefa6df9 100644 --- a/miasm2/core/parse_asm.py +++ b/miasm2/core/parse_asm.py @@ -232,7 +232,7 @@ def parse_txt(mnemo, attrib, txt, symbol_pool=None): cur_block = None state = STATE_NO_BLOC i = 0 - blocks = asmbloc.BasicBlocks() + blocks = asmbloc.AsmCFG() block_to_nlink = None block_may_link = False delayslot = 0 |