diff options
| author | rootkiter <rootkiter@rootkiter.com> | 2017-03-08 17:32:55 +0800 |
|---|---|---|
| committer | rootkiter <rootkiter@rootkiter.com> | 2017-03-08 17:32:55 +0800 |
| commit | 4eb5bab7b9ff157741c1f7b33c170d1f5bc6c95e (patch) | |
| tree | 6dfc0ad14d507cf0170f864be114018fc62f37da | |
| parent | 464519ca327b331c6fcc8c31408145f1192f1399 (diff) | |
| download | miasm-4eb5bab7b9ff157741c1f7b33c170d1f5bc6c95e.tar.gz miasm-4eb5bab7b9ff157741c1f7b33c170d1f5bc6c95e.zip | |
add mips32's addi simulation
Diffstat (limited to '')
| -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, |