Merge commit '802798ce3c8baa4697120580f87bc1ee377306d3' as 'external/capstone'

This commit is contained in:
2026-05-11 11:55:07 +02:00
3968 changed files with 2967598 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
test_cases:
-
input:
bytes: [ 0x00, 0x29, 0x64, 0x40 ]
arch: "CS_ARCH_MIPS"
options: [ "CS_OPT_SYNTAX_NOREGNAME", "CS_MODE_LITTLE_ENDIAN", "CS_MODE_MIPS64R5" ]
expected:
insns:
-
asm_text: "dmfgc0 $4, $5, 0"
-
input:
bytes: [ 0x04, 0x29, 0x64, 0x40 ]
arch: "CS_ARCH_MIPS"
options: [ "CS_OPT_SYNTAX_NOREGNAME", "CS_MODE_LITTLE_ENDIAN", "CS_MODE_MIPS64R5" ]
expected:
insns:
-
asm_text: "dmfgc0 $4, $5, 4"
-
input:
bytes: [ 0x00, 0x23, 0x65, 0x40 ]
arch: "CS_ARCH_MIPS"
options: [ "CS_OPT_SYNTAX_NOREGNAME", "CS_MODE_LITTLE_ENDIAN", "CS_MODE_MIPS64R5" ]
expected:
insns:
-
asm_text: "dmtgc0 $5, $4, 0"
-
input:
bytes: [ 0x04, 0x2b, 0x64, 0x40 ]
arch: "CS_ARCH_MIPS"
options: [ "CS_OPT_SYNTAX_NOREGNAME", "CS_MODE_LITTLE_ENDIAN", "CS_MODE_MIPS64R5" ]
expected:
insns:
-
asm_text: "dmtgc0 $4, $5, 4"