From: Craig Janeczek <[email protected]> Add bit encoding for MXU operand getting pattern 'optn2'.
Reviewed-by: Stefan Markovic <[email protected]> Signed-off-by: Craig Janeczek <[email protected]> Signed-off-by: Aleksandar Markovic <[email protected]> --- target/mips/translate.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/target/mips/translate.c b/target/mips/translate.c index 1935796..2cf0ba5 100644 --- a/target/mips/translate.c +++ b/target/mips/translate.c @@ -23993,6 +23993,12 @@ static void decode_opc_special(CPUMIPSState *env, DisasContext *ctx) #define MXU_EPTN2_SA 2 #define MXU_EPTN2_SS 3 +/* MXU operand getting pattern 'optn2' */ +#define MXU_OPTN2_WW 0 +#define MXU_OPTN2_LW 1 +#define MXU_OPTN2_HW 2 +#define MXU_OPTN2_XW 3 + /* * -- 2.7.4
