summaryrefslogtreecommitdiffstats
path: root/target-m68k/exec.h
diff options
context:
space:
mode:
authorPaolo Bonzini2010-06-29 09:58:50 +0200
committerBlue Swirl2010-07-03 08:48:12 +0200
commit10eb0cc03c20b232356edb367516939d6d7bb862 (patch)
treeaa231e9b32dc701736ea0c8d193413aaabc3659c /target-m68k/exec.h
parentremove unused stuff from */exec.h (diff)
downloadqemu-10eb0cc03c20b232356edb367516939d6d7bb862.tar.gz
qemu-10eb0cc03c20b232356edb367516939d6d7bb862.tar.xz
qemu-10eb0cc03c20b232356edb367516939d6d7bb862.zip
move cpu_pc_from_tb to target-*/exec.h
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-m68k/exec.h')
-rw-r--r--target-m68k/exec.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/target-m68k/exec.h b/target-m68k/exec.h
index ece9aa09cd..f31e06ed95 100644
--- a/target-m68k/exec.h
+++ b/target-m68k/exec.h
@@ -42,3 +42,9 @@ static inline int cpu_halted(CPUState *env) {
}
return EXCP_HALTED;
}
+
+static inline void cpu_pc_from_tb(CPUState *env, TranslationBlock *tb)
+{
+ env->pc = tb->pc;
+}
+