diff options
author | Alexander Graf <agraf@suse.de> | 2011-04-15 17:32:48 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2011-04-18 20:51:59 +0200 |
commit | 3110e2925489c571901e945e315942ce84fe696f (patch) | |
tree | 4cc53827e60da2e5f3b1c54fb9a4c7772902b861 /target-s390x/exec.h | |
parent | bcec36eaa0f8570d455214512f1d6382410c509e (diff) |
s390x: Enable s390x-softmmu target
This patch adds some code paths for running s390x guest OSs without the
need for KVM.
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'target-s390x/exec.h')
-rw-r--r-- | target-s390x/exec.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/target-s390x/exec.h b/target-s390x/exec.h index f7893f3877..7a87fffca6 100644 --- a/target-s390x/exec.h +++ b/target-s390x/exec.h @@ -31,7 +31,16 @@ register struct CPUS390XState *env asm(AREG0); static inline int cpu_has_work(CPUState *env) { - return env->interrupt_request & CPU_INTERRUPT_HARD; // guess + return ((env->interrupt_request & CPU_INTERRUPT_HARD) && + (env->psw.mask & PSW_MASK_EXT)); +} + +static inline void regs_to_env(void) +{ +} + +static inline void env_to_regs(void) +{ } static inline void cpu_pc_from_tb(CPUState *env, TranslationBlock* tb) |