diff options
| author | IridiumXOR <oliveriandrea@gmail.com> | 2020-04-29 19:37:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-29 19:37:28 +0200 |
| commit | 9b92ca809557c5817250c7397bebb0f8dc9e8163 (patch) | |
| tree | eaa3426b4ce6c68199ee4c92ce222f6e95d8cd0b /test/arch/mips32/arch.py | |
| parent | 15e00a41277453ad65f08d04093ce1c7bcb952ea (diff) | |
| download | miasm-9b92ca809557c5817250c7397bebb0f8dc9e8163.tar.gz miasm-9b92ca809557c5817250c7397bebb0f8dc9e8163.zip | |
Add new MIPS opcodes (#1203)
* Add new MIPS opcodes * Add test for new opcodes and remove semantics for not implemented opcodes
Diffstat (limited to '')
| -rw-r--r-- | test/arch/mips32/arch.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/arch/mips32/arch.py b/test/arch/mips32/arch.py index e5e8cff6..e14eda8a 100644 --- a/test/arch/mips32/arch.py +++ b/test/arch/mips32/arch.py @@ -214,6 +214,23 @@ reg_tests_mips32 = [ ("XXXXXXXX LDC1 F22, 0xFFFF9148(V0)", "D4569148"), + + ("XXXXXXXX BEQL S0, V0, 0x124", + "52020048"), + ("XXXXXXXX BGEZL T3, 0x24", + "05630008"), + ("XXXXXXXX BNEL A0, ZERO, 0x2C", + "5480000A"), + ("XXXXXXXX BLTZL S6, 0x5C", + "06C20016"), + ("XXXXXXXX BLEZL V1, 0x80", + "5860001F"), + ("XXXXXXXX BGTZL S4, 0x14", + "5E800004"), + ("XXXXXXXX BC1FL FCC0, 0x24", + "45020008"), + ("XXXXXXXX BC1TL FCC0, 0xB8", + "4503002D"), ] |