diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2016-01-13 14:14:51 +0100 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2016-01-13 14:14:51 +0100 |
| commit | 4c9094900f28a569bab5b0d6fc3343e418eb8569 (patch) | |
| tree | 85d334f59d736db409d38e80c49e8a19e50525fe /miasm2/arch/mips32/arch.py | |
| parent | 8dbf8b2747bed3257bb8db5f1c01cd08a846c3f0 (diff) | |
| parent | cd243102ed09dc8e61fba8d5e4e4ac28c78023c2 (diff) | |
| download | miasm-4c9094900f28a569bab5b0d6fc3343e418eb8569.tar.gz miasm-4c9094900f28a569bab5b0d6fc3343e418eb8569.zip | |
Merge pull request #302 from commial/refactor-asmlabel
Refactor asmlabel
Diffstat (limited to 'miasm2/arch/mips32/arch.py')
| -rw-r--r-- | miasm2/arch/mips32/arch.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/arch/mips32/arch.py b/miasm2/arch/mips32/arch.py index a5463b6f..f64e09e5 100644 --- a/miasm2/arch/mips32/arch.py +++ b/miasm2/arch/mips32/arch.py @@ -189,7 +189,7 @@ class instruction_mips32(cpu.instruction): class mn_mips32(cpu.cls_mn): - delayslot = 0 + delayslot = 1 name = "mips32" regs = regs bintree = {} @@ -297,7 +297,7 @@ class mips32_fccreg(mips32_reg): parser = reg_info.parser class mips32_imm(cpu.imm_noarg): - parser = cpu.base_expr + parser = base_expr class mips32_s16imm_noarg(mips32_imm): |