mirror of
https://github.com/capstone-engine/capstone.git
synced 2024-11-24 22:19:43 +00:00
Fixed systemz header to comply with bindings
This commit is contained in:
parent
9a03b002dc
commit
16a67a9c6d
@ -90,8 +90,10 @@ typedef enum sysz_reg {
|
||||
// Instruction's operand referring to memory
|
||||
// This is associated with SYSZ_OP_MEM operand type above
|
||||
typedef struct sysz_op_mem {
|
||||
sysz_reg base; // base register
|
||||
sysz_reg index; // index register
|
||||
uint8_t base; // base register, can be safely interpreted as
|
||||
// a value of type `sysz_reg`, but it is only
|
||||
// one byte wide
|
||||
uint8_t index; // index register, same conditions apply here
|
||||
uint64_t length; // BDLAddr operand
|
||||
int64_t disp; // displacement/offset value
|
||||
} sysz_op_mem;
|
||||
|
Loading…
Reference in New Issue
Block a user