diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-02-15 16:41:53 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-03-13 14:13:14 +0100 |
| commit | 72d7235d59d0998bee24b3bf9b18d5501e84f085 (patch) | |
| tree | 6ceb628e7b0e80f21fc2baebc7eeedb6580bd3f2 /miasm2/core/parse_asm.py | |
| parent | d0727aa74bf264580e82f37abc9833b75804daca (diff) | |
| download | miasm-72d7235d59d0998bee24b3bf9b18d5501e84f085.tar.gz miasm-72d7235d59d0998bee24b3bf9b18d5501e84f085.zip | |
Asmbloc: rename asm_symbol_pool to AsmSymbolPool
Diffstat (limited to 'miasm2/core/parse_asm.py')
| -rw-r--r-- | miasm2/core/parse_asm.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/miasm2/core/parse_asm.py b/miasm2/core/parse_asm.py index e51a2412..cda330fc 100644 --- a/miasm2/core/parse_asm.py +++ b/miasm2/core/parse_asm.py @@ -61,7 +61,7 @@ class DirectiveDontSplit(Directive): def guess_next_new_label(symbol_pool): """Generate a new label - @symbol_pool: the asm_symbol_pool instance""" + @symbol_pool: the AsmSymbolPool instance""" i = 0 gen_name = "loc_%.8X" while True: @@ -103,18 +103,18 @@ STATE_IN_BLOC = 1 def parse_txt(mnemo, attrib, txt, symbol_pool=None): """Parse an assembly listing. Returns a couple (blocks, symbol_pool), where - blocks is a list of asm_bloc and symbol_pool the associated asm_symbol_pool + blocks is a list of asm_bloc and symbol_pool the associated AsmSymbolPool @mnemo: architecture used @attrib: architecture attribute @txt: assembly listing - @symbol_pool: (optional) the asm_symbol_pool instance used to handle labels + @symbol_pool: (optional) the AsmSymbolPool instance used to handle labels of the listing """ if symbol_pool is None: - symbol_pool = asmbloc.asm_symbol_pool() + symbol_pool = asmbloc.AsmSymbolPool() C_NEXT = asmbloc.asm_constraint.c_next C_TO = asmbloc.asm_constraint.c_to |