diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2017-03-08 10:57:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-08 10:57:38 +0100 |
| commit | 5ee794990ff30ca18909dd3815eda26ac267cbf4 (patch) | |
| tree | 6dfc0ad14d507cf0170f864be114018fc62f37da | |
| parent | 464519ca327b331c6fcc8c31408145f1192f1399 (diff) | |
| parent | 4eb5bab7b9ff157741c1f7b33c170d1f5bc6c95e (diff) | |
| download | miasm-5ee794990ff30ca18909dd3815eda26ac267cbf4.tar.gz miasm-5ee794990ff30ca18909dd3815eda26ac267cbf4.zip | |
Merge pull request #500 from rootkiter/fix_addi_for_mips32
add mips32's addi simulation
| -rw-r--r-- | miasm2/arch/mips32/sem.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/miasm2/arch/mips32/sem.py b/miasm2/arch/mips32/sem.py index dea822b4..b52b8401 100644 --- a/miasm2/arch/mips32/sem.py +++ b/miasm2/arch/mips32/sem.py @@ -402,6 +402,7 @@ mnemo_func = sbuild.functions mnemo_func.update({ 'add.d': add_d, 'addu': addiu, + 'addi': addiu, 'and': l_and, 'andi': l_and, 'b': l_b, |