diff options
| author | Alexander Graf | 2009-12-05 12:44:26 +0100 |
|---|---|---|
| committer | Aurelien Jarno | 2009-12-05 17:36:05 +0100 |
| commit | 10c339a07d42fcccbccd3f8a5e9c94ccb51fe3e4 (patch) | |
| tree | 5f0a7c337caba4c87117bd6afe2c9682c1ce5ad0 /target-s390x/exec.h | |
| parent | Allocate physical memory in low virtual address space (diff) | |
| download | qemu-10c339a07d42fcccbccd3f8a5e9c94ccb51fe3e4.tar.gz qemu-10c339a07d42fcccbccd3f8a5e9c94ccb51fe3e4.tar.xz qemu-10c339a07d42fcccbccd3f8a5e9c94ccb51fe3e4.zip | |
Add support for S390x system emulation
Let's enable the basics for system emulation so we can run virtual machines
with 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 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-s390x/exec.h b/target-s390x/exec.h index 5198359804..13dc7dd066 100644 --- a/target-s390x/exec.h +++ b/target-s390x/exec.h @@ -22,9 +22,14 @@ register struct CPUS390XState *env asm(AREG0); +#include "config.h" #include "cpu.h" #include "exec-all.h" +#if !defined(CONFIG_USER_ONLY) +#include "softmmu_exec.h" +#endif /* !defined(CONFIG_USER_ONLY) */ + static inline int cpu_has_work(CPUState *env) { return env->interrupt_request & CPU_INTERRUPT_HARD; // guess |
