target-mips: Add enum for BREAK32

Add enum for BREAK32

Signed-off-by: Yongbok Kim <yongbok.kim@imgtec.com>
Reviewed-by: Leon Alrae <leon.alrae@imgtec.com>
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
This commit is contained in:
Yongbok Kim 2015-10-02 17:50:50 +01:00 committed by Leon Alrae
parent 2dcf7908d9
commit dbd8af9824

View File

@ -12009,6 +12009,7 @@ enum {
MODU = 0x7, MODU = 0x7,
/* The following can be distinguished by their lower 6 bits. */ /* The following can be distinguished by their lower 6 bits. */
BREAK32 = 0x07,
INS = 0x0c, INS = 0x0c,
LSA = 0x0f, LSA = 0x0f,
ALIGN = 0x1f, ALIGN = 0x1f,
@ -13629,7 +13630,7 @@ static void decode_micromips32_opc(CPUMIPSState *env, DisasContext *ctx)
case POOL32AXF: case POOL32AXF:
gen_pool32axf(env, ctx, rt, rs); gen_pool32axf(env, ctx, rt, rs);
break; break;
case 0x07: case BREAK32:
generate_exception_end(ctx, EXCP_BREAK); generate_exception_end(ctx, EXCP_BREAK);
break; break;
default: default: