diff options
| author | serpilliere <devnull@localhost> | 2014-08-21 10:21:47 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2014-08-21 10:21:47 +0200 |
| commit | 3931f27b69456b74041891a0636f881f44cbae9e (patch) | |
| tree | 32b873915d7c5110d757a95fce3afc26a13d265f /test/arch/mips32/arch.py | |
| parent | 34c51e71d83e9eddd23e684a37c4a1683a5fe7d9 (diff) | |
| download | miasm-3931f27b69456b74041891a0636f881f44cbae9e.tar.gz miasm-3931f27b69456b74041891a0636f881f44cbae9e.zip | |
mips32: add mnemo JAL/MOVZ
Diffstat (limited to 'test/arch/mips32/arch.py')
| -rw-r--r-- | test/arch/mips32/arch.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/arch/mips32/arch.py b/test/arch/mips32/arch.py index d0814a4c..2ec6d2a2 100644 --- a/test/arch/mips32/arch.py +++ b/test/arch/mips32/arch.py @@ -208,6 +208,10 @@ reg_tests_mips32 = [ ("8BA10124 INS A0, A1, 0x0, 0x8", "7CA43804"), + ("XXXXXXXX MOVZ S0, T1, A2", + "0126800a"), + ("XXXXXXXX JAL 0x7C0B0AC", + "0df02c2b"), ] |