mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-06-06 18:31:03 +00:00
32 lines
525 B
YAML
32 lines
525 B
YAML
![]() |
test_cases:
|
||
|
-
|
||
|
input:
|
||
|
bytes: [ 0x05, 0xb0, 0xa0, 0xe1 ]
|
||
|
arch: "arm"
|
||
|
options: ["arm"]
|
||
|
expected:
|
||
|
insns:
|
||
|
-
|
||
|
asm_text: "mov r11, r5"
|
||
|
-
|
||
|
input:
|
||
|
bytes: [ 0x06, 0x10, 0xa0, 0xe1 ]
|
||
|
arch: "arm"
|
||
|
options: ["arm"]
|
||
|
expected:
|
||
|
insns:
|
||
|
-
|
||
|
asm_text: "mov r1, r6"
|
||
|
-
|
||
|
input:
|
||
|
bytes: [ 0x06, 0x10, 0xa0, 0xe1, 0x05, 0xb0, 0xa0, 0xe1 ]
|
||
|
arch: "arm"
|
||
|
options: ["arm"]
|
||
|
expected:
|
||
|
insns:
|
||
|
-
|
||
|
asm_text: "mov r1, r6"
|
||
|
-
|
||
|
asm_text: "mov r11, r5"
|
||
|
|