qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [4556] Fix A20 debug dumps.
@ 2008-05-24 14:48 Paul Brook
  0 siblings, 0 replies; only message in thread
From: Paul Brook @ 2008-05-24 14:48 UTC (permalink / raw)
  To: qemu-devel

Revision: 4556
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4556
Author:   pbrook
Date:     2008-05-24 14:48:38 +0000 (Sat, 24 May 2008)

Log Message:
-----------
Fix A20 debug dumps.

Modified Paths:
--------------
    trunk/target-i386/helper2.c

Modified: trunk/target-i386/helper2.c
===================================================================
--- trunk/target-i386/helper2.c	2008-05-24 13:56:15 UTC (rev 4555)
+++ trunk/target-i386/helper2.c	2008-05-24 14:48:38 UTC (rev 4556)
@@ -513,7 +513,7 @@
                     eflags & CC_C ? 'C' : '-',
                     env->hflags & HF_CPL_MASK,
                     (env->hflags >> HF_INHIBIT_IRQ_SHIFT) & 1,
-                    (env->a20_mask >> 20) & 1,
+                    (int)(env->a20_mask >> 20) & 1,
                     (env->hflags >> HF_SMM_SHIFT) & 1,
                     (env->hflags >> HF_HALTED_SHIFT) & 1);
     } else
@@ -540,7 +540,7 @@
                     eflags & CC_C ? 'C' : '-',
                     env->hflags & HF_CPL_MASK,
                     (env->hflags >> HF_INHIBIT_IRQ_SHIFT) & 1,
-                    (env->a20_mask >> 20) & 1,
+                    (int)(env->a20_mask >> 20) & 1,
                     (env->hflags >> HF_SMM_SHIFT) & 1,
                     (env->hflags >> HF_HALTED_SHIFT) & 1);
     }

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-05-24 14:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-24 14:48 [Qemu-devel] [4556] Fix A20 debug dumps Paul Brook

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).