mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-06-06 01:02:08 +00:00
38 lines
846 B
YAML
38 lines
846 B
YAML
![]() |
test_cases:
|
||
|
-
|
||
|
input:
|
||
|
bytes: [ 0xa4, 0x00, 0x3c, 0xcb ]
|
||
|
arch: "CS_ARCH_MIPS"
|
||
|
options: [ "CS_MODE_MIPS32", "CS_MODE_MICRO" ]
|
||
|
expected:
|
||
|
insns:
|
||
|
-
|
||
|
asm_text: "madd $a0, $a1"
|
||
|
-
|
||
|
input:
|
||
|
bytes: [ 0xa4, 0x00, 0x3c, 0xdb ]
|
||
|
arch: "CS_ARCH_MIPS"
|
||
|
options: [ "CS_MODE_MIPS32", "CS_MODE_MICRO" ]
|
||
|
expected:
|
||
|
insns:
|
||
|
-
|
||
|
asm_text: "maddu $a0, $a1"
|
||
|
-
|
||
|
input:
|
||
|
bytes: [ 0xa4, 0x00, 0x3c, 0xeb ]
|
||
|
arch: "CS_ARCH_MIPS"
|
||
|
options: [ "CS_MODE_MIPS32", "CS_MODE_MICRO" ]
|
||
|
expected:
|
||
|
insns:
|
||
|
-
|
||
|
asm_text: "msub $a0, $a1"
|
||
|
-
|
||
|
input:
|
||
|
bytes: [ 0xa4, 0x00, 0x3c, 0xfb ]
|
||
|
arch: "CS_ARCH_MIPS"
|
||
|
options: [ "CS_MODE_MIPS32", "CS_MODE_MICRO" ]
|
||
|
expected:
|
||
|
insns:
|
||
|
-
|
||
|
asm_text: "msubu $a0, $a1"
|