]> git.proxmox.com Git - qemu.git/blobdiff - target-alpha/exec.h
lm32: softusb: claim to support full speed
[qemu.git] / target-alpha / exec.h
index 0fb459da43eb6e11b4c36a2c27b3dc37557fd74e..afb01d372722d941705f44750f25e3897c699002 100644 (file)
@@ -31,26 +31,9 @@ register struct CPUAlphaState *env asm(AREG0);
 #define FP_STATUS (env->fp_status)
 
 #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);
-}
-
-static inline int cpu_halted(CPUState *env)
-{
-    if (!env->halted)
-        return 0;
-    if (cpu_has_work(env)) {
-        env->halted = 0;
-        return 0;
-    }
-    return EXCP_HALTED;
-}
-
 #endif /* !defined (__ALPHA_EXEC_H__) */