aboutsummaryrefslogtreecommitdiff
path: root/include/opcode/rx.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/opcode/rx.h')
-rw-r--r--include/opcode/rx.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/opcode/rx.h b/include/opcode/rx.h
index 0840be0..aa85fe4 100644
--- a/include/opcode/rx.h
+++ b/include/opcode/rx.h
@@ -47,6 +47,7 @@ typedef enum
RX_Operand_Predec, /* [-Rn] */
RX_Operand_Condition, /* eq, gtu, etc */
RX_Operand_Flag, /* [UIOSZC] */
+ RX_Operand_TwoReg, /* [Rn + scale*R2] */
} RX_Operand_Type;
typedef enum
@@ -82,8 +83,6 @@ typedef enum
RXO_min, /* d = min(d,s) */
RXO_emul, /* d:64 = d:32 * s */
RXO_emulu, /* d:64 = d:32 * s (unsigned) */
- RXO_ediv, /* d:64 / s; d = quot, d+1 = rem */
- RXO_edivu, /* d:64 / s; d = quot, d+1 = rem */
RXO_rolc, /* d <<= 1 through carry */
RXO_rorc, /* d >>= 1 through carry*/