diff options
author | Bastian Koppelmann <kbastian@mail.uni-paderborn.de> | 2015-02-25 12:29:24 +0000 |
---|---|---|
committer | Bastian Koppelmann <kbastian@mail.uni-paderborn.de> | 2015-03-16 15:53:08 +0000 |
commit | b724b012a4ea9877c5ddad254df63735a945618c (patch) | |
tree | 0fe7fbb4956c3ab6957bafb2ef84ac48463d4d4b /target-tricore/helper.h | |
parent | eb989d2545832deff386b23c904fc26f78303637 (diff) | |
download | hqemu-b724b012a4ea9877c5ddad254df63735a945618c.zip hqemu-b724b012a4ea9877c5ddad254df63735a945618c.tar.gz |
target-tricore: Add instructions of SYS opcode format
This adds only the non trap instructions.
Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
Diffstat (limited to 'target-tricore/helper.h')
-rw-r--r-- | target-tricore/helper.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target-tricore/helper.h b/target-tricore/helper.h index 8186d36..1a49b00 100644 --- a/target-tricore/helper.h +++ b/target-tricore/helper.h @@ -122,10 +122,13 @@ DEF_HELPER_2(call, void, env, i32) DEF_HELPER_1(ret, void, env) DEF_HELPER_2(bisr, void, env, i32) DEF_HELPER_1(rfe, void, env) +DEF_HELPER_1(rfm, void, env) DEF_HELPER_2(ldlcx, void, env, i32) DEF_HELPER_2(lducx, void, env, i32) DEF_HELPER_2(stlcx, void, env, i32) DEF_HELPER_2(stucx, void, env, i32) +DEF_HELPER_1(svlcx, void, env) +DEF_HELPER_1(rslcx, void, env) /* Address mode helper */ DEF_HELPER_1(br_update, i32, i32) DEF_HELPER_2(circ_update, i32, i32, i32) |