]> git.proxmox.com Git - qemu.git/blobdiff - target-i386/helper.c
target-i386: Pass X86CPU to cpu_x86_set_a20()
[qemu.git] / target-i386 / helper.c
index 547c25ee9dc1d4e2a6bd0023cad073abb2f93edc..bdf83084fffcaf6e21eebc6fab155226590629fc 100644 (file)
@@ -366,8 +366,10 @@ void cpu_dump_state(CPUX86State *env, FILE *f, fprintf_function cpu_fprintf,
 /* x86 mmu */
 /* XXX: add PGE support */
 
-void cpu_x86_set_a20(CPUX86State *env, int a20_state)
+void x86_cpu_set_a20(X86CPU *cpu, int a20_state)
 {
+    CPUX86State *env = &cpu->env;
+
     a20_state = (a20_state != 0);
     if (a20_state != ((env->a20_mask >> 20) & 1)) {
 #if defined(DEBUG_MMU)