diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-02-13 20:11:30 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-02-13 20:11:30 +0000 |
commit | 0bee699e1db8170071902dbbde9c6b932883a897 (patch) | |
tree | af0252d51ee4aa301a16a7d66e35818943e94d39 /target-sparc/op.c | |
parent | 878d3096d20c3b77f5aaa25460d470bc7d8da15b (diff) | |
download | qemu-0bee699e1db8170071902dbbde9c6b932883a897.zip qemu-0bee699e1db8170071902dbbde9c6b932883a897.tar.gz qemu-0bee699e1db8170071902dbbde9c6b932883a897.tar.bz2 |
fixed jmpl, rett and call
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1292 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sparc/op.c')
-rw-r--r-- | target-sparc/op.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-sparc/op.c b/target-sparc/op.c index dd8295e..7fa98f1 100644 --- a/target-sparc/op.c +++ b/target-sparc/op.c @@ -812,6 +812,11 @@ void OPPROTO op_movl_npc_T0(void) env->npc = T0; } +void OPPROTO op_mov_pc_npc(void) +{ + env->pc = env->npc; +} + void OPPROTO op_next_insn(void) { env->pc = env->npc; |