Skip to content

Commit

Permalink
Update python bindings constants.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rot127 committed Sep 20, 2023
1 parent bfd6508 commit c7e30ba
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions bindings/python/capstone/ppc_const.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,18 @@
PPC_PRED_NE_PLUS = (2<<5)|7
PPC_PRED_UN_PLUS = (3<<5)|15
PPC_PRED_NU_PLUS = (3<<5)|7
PPC_PRED_NZ_PLUS = (0<<5)|17
PPC_PRED_Z_PLUS = (0<<5)|19
PPC_PRED_NZ_PLUS = (0<<5)|25
PPC_PRED_Z_PLUS = (0<<5)|27
PPC_PRED_LT_RESERVED = (0<<5)|13
PPC_PRED_LE_RESERVED = (1<<5)|5
PPC_PRED_EQ_RESERVED = (2<<5)|13
PPC_PRED_GE_RESERVED = (0<<5)|5
PPC_PRED_GT_RESERVED = (1<<5)|13
PPC_PRED_NE_RESERVED = (2<<5)|5
PPC_PRED_UN_RESERVED = (3<<5)|13
PPC_PRED_NU_RESERVED = (3<<5)|5
PPC_PRED_NZ_RESERVED = (0<<5)|17
PPC_PRED_Z_RESERVED = (0<<5)|19
PPC_PRED_SPE = PPC_PRED_GT
PPC_PRED_BIT_SET = 1024
PPC_PRED_BIT_UNSET = 1025
Expand Down

0 comments on commit c7e30ba

Please sign in to comment.