diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-05-23 19:58:11 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-05-23 19:58:11 +0000 |
commit | 0633879f1ac38b18d84c46dda506300cc8329723 (patch) | |
tree | 8df64e0861c32132c7a08af16451629f1ec69112 /exec-all.h | |
parent | 9daea9067aae3e324f14c6b139621c10683fc550 (diff) |
m68k/ColdFire system emulation.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2851 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'exec-all.h')
-rw-r--r-- | exec-all.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/exec-all.h b/exec-all.h index c6b7bd1986..dbfe457614 100644 --- a/exec-all.h +++ b/exec-all.h @@ -584,6 +584,8 @@ static inline target_ulong get_phys_addr_code(CPUState *env, target_ulong addr) is_user = ((env->sr & SR_MD) == 0); #elif defined (TARGET_ALPHA) is_user = ((env->ps >> 3) & 3); +#elif defined (TARGET_M68K) + is_user = ((env->sr & SR_S) == 0); #else #error unimplemented CPU #endif |