mirror of
https://github.com/RRZE-HPC/OSACA.git
synced 2026-01-10 13:07:06 +01:00
11 lines
309 B
Python
11 lines
309 B
Python
"""
|
|
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__ = ['AttrDict', 'ParserX86ATT', 'ParserAArch64v81']
|