summaryrefslogtreecommitdiff
path: root/target-cris/op_helper.c
diff options
context:
space:
mode:
authoredgar_igl <edgar_igl@c046a42c-6fe2-441c-8c8c-71466251a162>2008-06-09 23:07:50 +0000
committeredgar_igl <edgar_igl@c046a42c-6fe2-441c-8c8c-71466251a162>2008-06-09 23:07:50 +0000
commit5bf8f1aba1ab727713edf4084e7bc841dd1e6732 (patch)
tree34909af89d28068859975abba7e72ddf8181129b /target-cris/op_helper.c
parenta7cfbba0cf90e3a42f2fc05556dd5b1d614f4cad (diff)
downloadqemu-5bf8f1aba1ab727713edf4084e7bc841dd1e6732.tar.gz
CRIS: Support RFN insn.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4718 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-cris/op_helper.c')
-rw-r--r--target-cris/op_helper.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/target-cris/op_helper.c b/target-cris/op_helper.c
index f5c0ed191f..0e7d3c37ff 100644
--- a/target-cris/op_helper.c
+++ b/target-cris/op_helper.c
@@ -220,6 +220,25 @@ void helper_rfe(void)
env->pregs[PR_CCS] |= P_FLAG;
}
+void helper_rfn(void)
+{
+ int rflag = env->pregs[PR_CCS] & R_FLAG;
+
+ D(fprintf(logfile, "rfn: erp=%x pid=%x ccs=%x btarget=%x\n",
+ env->pregs[PR_ERP], env->pregs[PR_PID],
+ env->pregs[PR_CCS],
+ env->btarget));
+
+ cris_ccs_rshift(env);
+
+ /* Set the P_FLAG only if the R_FLAG is not set. */
+ if (!rflag)
+ env->pregs[PR_CCS] |= P_FLAG;
+
+ /* Always set the M flag. */
+ env->pregs[PR_CCS] |= M_FLAG;
+}
+
void helper_store(uint32_t a0)
{
if (env->pregs[PR_CCS] & P_FLAG )