From 213fb478f80a493f5f25b45d7a5763c8d81ca140 Mon Sep 17 00:00:00 2001 From: edgar_igl Date: Wed, 7 Jan 2009 12:35:08 +0000 Subject: CRIS: NMI wakes up the core. Signed-off-by: Edgar E. Iglesias git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6200 c046a42c-6fe2-441c-8c8c-71466251a162 --- target-cris/translate.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'target-cris') diff --git a/target-cris/translate.c b/target-cris/translate.c index ab83b66..1dd880f 100644 --- a/target-cris/translate.c +++ b/target-cris/translate.c @@ -2979,8 +2979,12 @@ static unsigned int dec_rfe_etc(DisasContext *dc) { cris_cc_mask(dc, 0); - if (dc->op2 == 15) /* ignore halt. */ + if (dc->op2 == 15) { + t_gen_mov_env_TN(halted, tcg_const_tl(1)); + tcg_gen_movi_tl(env_pc, dc->pc + 2); + t_gen_raise_exception(EXCP_HLT); return 2; + } switch (dc->op2 & 7) { case 2: -- cgit v1.1