On 11/07/2016 03:44 PM, Bastian Koppelmann wrote:
+void helper_updfl(CPUTriCoreState *env, uint32_t arg)
+{
+env->FPU_FS = extract32(arg, 7, 1) & extract32(arg, 15, 1);
+env->FPU_FI = (extract32(arg, 6, 1) & extract32(arg, 14, 1)) << 31;
+env->FPU_FV = (extract32(arg, 5, 1) & extract
Signed-off-by: Bastian Koppelmann
---
target-tricore/fpu_helper.c | 12
target-tricore/helper.h | 1 +
target-tricore/translate.c | 3 +++
3 files changed, 16 insertions(+)
diff --git a/target-tricore/fpu_helper.c b/target-tricore/fpu_helper.c
index d530a0b..89de0ea 100644
--