(self)
| 665 | # return instruction's mnemonic. |
| 666 | @property |
| 667 | def mnemonic(self): |
| 668 | if self._cs._diet: |
| 669 | # Diet engine cannot provide @mnemonic. |
| 670 | raise CsError(CS_ERR_DIET) |
| 671 | |
| 672 | return self._raw.mnemonic.decode('ascii') |
| 673 | |
| 674 | # return instruction's operands (in string). |
| 675 | @property |