(self)
| 674 | # return instruction's operands (in string). |
| 675 | @property |
| 676 | def op_str(self): |
| 677 | if self._cs._diet: |
| 678 | # Diet engine cannot provide @op_str. |
| 679 | raise CsError(CS_ERR_DIET) |
| 680 | |
| 681 | return self._raw.op_str.decode('ascii') |
| 682 | |
| 683 | # return list of all implicit registers being read. |
| 684 | @property |