diff options
| author | serpilliere <devnull@localhost> | 2014-06-03 10:27:56 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2014-06-03 10:27:56 +0200 |
| commit | ed5c3668cc9f545b52674ad699fc2b0ed1ccb575 (patch) | |
| tree | 07faf97d7e4d083173a1f7e1bfd249baed2d74f9 /miasm2/arch/msp430/disasm.py | |
| parent | a183e1ebd525453710306695daa8c410fd0cb2af (diff) | |
| download | miasm-ed5c3668cc9f545b52674ad699fc2b0ed1ccb575.tar.gz miasm-ed5c3668cc9f545b52674ad699fc2b0ed1ccb575.zip | |
Miasm v2
* API has changed, so old scripts need updates * See example for API usage * Use tcc or llvm for jit emulation * Go to test and run test_all.py to check install Enjoy !
Diffstat (limited to 'miasm2/arch/msp430/disasm.py')
| -rw-r--r-- | miasm2/arch/msp430/disasm.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/miasm2/arch/msp430/disasm.py b/miasm2/arch/msp430/disasm.py new file mode 100644 index 00000000..f0138bdf --- /dev/null +++ b/miasm2/arch/msp430/disasm.py @@ -0,0 +1,8 @@ +from miasm2.core.asmbloc import disasmEngine +from arch import mn_msp430 + + +class dis_msp430(disasmEngine): + + def __init__(self, bs=None, **kwargs): + super(dis_msp430, self).__init__(mn_msp430, None, bs, **kwargs) |