python: update @op_str & ARM's @operands following the changes in core

This commit is contained in:
Nguyen Anh Quynh 2014-01-13 23:30:30 +08:00
parent b99aec8791
commit e03da92ebd
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ class CsArm(ctypes.Structure):
('update_flags', ctypes.c_bool),
('writeback', ctypes.c_bool),
('op_count', ctypes.c_uint8),
('operands', ArmOp * 20),
('operands', ArmOp * 36),
)
def get_arch_info(a):

View File

@ -178,7 +178,7 @@ class _cs_insn(ctypes.Structure):
('size', ctypes.c_uint16),
('bytes', ctypes.c_ubyte * 16),
('mnemonic', ctypes.c_char * 32),
('op_str', ctypes.c_char * 96),
('op_str', ctypes.c_char * 136),
('detail', ctypes.POINTER(_cs_detail)),
)