From c9a21ab44d73a2565f151ce16b9fa9f6a3be81a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Sun, 5 Oct 2014 14:20:30 +0200 Subject: [PATCH] Add T2 and T3 to our register enum for clarity --- Core/MIPS/MIPS.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Core/MIPS/MIPS.h b/Core/MIPS/MIPS.h index bbe67ce373..c9e7c35cc8 100644 --- a/Core/MIPS/MIPS.h +++ b/Core/MIPS/MIPS.h @@ -38,9 +38,11 @@ enum MIPSGPReg MIPS_REG_A1=5, MIPS_REG_A2=6, MIPS_REG_A3=7, - MIPS_REG_A4=8, // Seems to be N32 register calling convention - there are 8 args instead of 4. + MIPS_REG_A4=8, MIPS_REG_A5=9, + MIPS_REG_T2=10, + MIPS_REG_T3=11, MIPS_REG_T4=12, MIPS_REG_T5=13, MIPS_REG_T6=14,