diff options
| m--------- | arch/powerpc/capstone | 0 | ||||
| -rwxr-xr-x | arch/powerpc/test_lifting.py | 4 |
2 files changed, 3 insertions, 1 deletions
diff --git a/arch/powerpc/capstone b/arch/powerpc/capstone -Subproject 650e85dcf23b3a3bff69144511533b733943623 +Subproject 5cca00533dadfe53181f1de3525f859769f69b6 diff --git a/arch/powerpc/test_lifting.py b/arch/powerpc/test_lifting.py index a1bef0cb..4ce4bb80 100755 --- a/arch/powerpc/test_lifting.py +++ b/arch/powerpc/test_lifting.py @@ -11,7 +11,9 @@ tests_mfcr = [ tests_basics = [ # li 3, 100 - (b'\x38\x60\x00\x64', 'LLIL_SET_REG.d{none}(r3,LLIL_CONST.d(0x64))') + (b'\x38\x60\x00\x64', 'LLIL_SET_REG.d{none}(r3,LLIL_CONST.d(0x64))'), + # xori r12, r12, 0x1431 + (b'\x69\x8c\x14\x31', 'LLIL_SET_REG.d{none}(r12,LLIL_XOR.d{none}(LLIL_REG.d{none}(r12),LLIL_CONST.d(0x1431)))') ] test_cases = \ |
