added AttrDict to parser and refactoring

This commit is contained in:
JanLJL
2019-06-04 12:55:32 +02:00
parent 6c212d130c
commit d553998b90
8 changed files with 265 additions and 222 deletions

View File

@@ -3,7 +3,8 @@ Collection of parsers supported by OSACA.
Only the parser below will be exported, so please add new parsers to __all__.
"""
from .attr_dict import AttrDict
from .parser_x86att import ParserX86ATT
from .parser_AArch64v81 import ParserAArch64v81
__all__ = ['ParserX86ATT', 'ParserAArch64v81']
__all__ = ['AttrDict', 'ParserX86ATT', 'ParserAArch64v81']