There are different instructions where the access details of memory operands is incorrect interpreted:
cstool -d thumb 11f8013b
0 11 f8 01 3b ldrb r3, [r1], #1
ID: 84 (ldrb)
op_count: 3
operands[0].type: REG = r3
operands[0].access: WRITE
operands[1].type: MEM
operands[1].mem.base: REG = r1
operands[2].type: IMM = 0x1
Write-back: True
Registers read: r1
Registers modified: r3 r1
Groups: thumb2
cstool -d thumb 00f8013b
0 00 f8 01 3b strb r3, [r0], #1
ID: 241 (strb)
op_count: 3
operands[0].type: REG = r3
operands[0].access: READ
operands[1].type: MEM
operands[1].mem.base: REG = r0
operands[2].type: IMM = 0x1
Write-back: True
Registers read: r3 r0
Registers modified: r0
Groups: thumb2
As you can see in both cases the access type for both memory operations is missing.
Using capstone v5.0.1
There are different instructions where the access details of memory operands is incorrect interpreted:
As you can see in both cases the access type for both memory operations is missing.
Using capstone v5.0.1