diff options
| author | serpilliere <devnull@localhost> | 2014-08-22 16:13:53 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2014-08-22 16:13:53 +0200 |
| commit | 22c0cc1ae2417550ff87baa33edfd0330071ddc7 (patch) | |
| tree | dcb2b92a1a4b122bd0ac5bb0bf8b9cfc42271823 /test/arch/mips32/arch.py | |
| parent | ab84e4dedfafb52efe8f9f04151f0e026b00476d (diff) | |
| download | miasm-22c0cc1ae2417550ff87baa33edfd0330071ddc7.tar.gz miasm-22c0cc1ae2417550ff87baa33edfd0330071ddc7.zip | |
Jitter: add mips32l jit
Diffstat (limited to 'test/arch/mips32/arch.py')
| -rw-r--r-- | test/arch/mips32/arch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/arch/mips32/arch.py b/test/arch/mips32/arch.py index 2ec6d2a2..fadffec5 100644 --- a/test/arch/mips32/arch.py +++ b/test/arch/mips32/arch.py @@ -231,7 +231,7 @@ for s, l in reg_tests_mips32: assert(str(mn) == s) # print hex(b) # print [str(x.get()) for x in mn.args] - l = mn_mips32.fromstring(s) + l = mn_mips32.fromstring(s, 'b') # print l assert(str(l) == s) a = mn_mips32.asm(l, 'b') |