diff options
| author | Aymeric Vincent <aymeric.vincent@cea.fr> | 2017-12-12 13:08:30 +0100 |
|---|---|---|
| committer | Aymeric Vincent <aymeric.vincent@cea.fr> | 2017-12-12 13:08:30 +0100 |
| commit | 0f8ceba8ecd3b9fdf49d6eaa10d8de33e17c4e2a (patch) | |
| tree | b4604a3c312bba53e258b5cd73e717efbf9d74e5 /test/arch/sh4/arch.py | |
| parent | a4fd3ad386ce159d4b653c7cdd3804ac98d9fc12 (diff) | |
| download | miasm-0f8ceba8ecd3b9fdf49d6eaa10d8de33e17c4e2a.tar.gz miasm-0f8ceba8ecd3b9fdf49d6eaa10d8de33e17c4e2a.zip | |
update tests to use the new spacing of expressions' str()
Diffstat (limited to '')
| -rw-r--r-- | test/arch/sh4/arch.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/arch/sh4/arch.py b/test/arch/sh4/arch.py index 7d3d890e..4d173add 100644 --- a/test/arch/sh4/arch.py +++ b/test/arch/sh4/arch.py @@ -13,7 +13,7 @@ reg_tests_sh4 = [ "ffe0"), ("c800226a MOV.W @(PC,0xC0), R9", "5e99"), - ("c8002006 MOV.L @(PC&0xFFFFFFFC,0x10), R15", + ("c8002006 MOV.L @(PC & 0xFFFFFFFC,0x10), R15", "03df"), ("c800cfc4 MOV R4, R9", "4369"), @@ -75,7 +75,7 @@ reg_tests_sh4 = [ "04c5"), ("xxxxxxxx MOV.L @(GBR,0x10), R0", "04c6"), - #("xxxxxxxx MOV PC&0xFFFFFFFC+0x14, R0", + #("xxxxxxxx MOV PC & 0xFFFFFFFC+0x14, R0", # "04c7"), ("xxxxxxxx SWAPB R2, R1", "2861"), |