All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] target/i386: Fix OUTL debug output
@ 2020-05-17 11:01 Philippe Mathieu-Daudé
  2020-05-19  3:39 ` Richard Henderson
  0 siblings, 1 reply; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-05-17 11:01 UTC (permalink / raw)
  To: qemu-devel
  Cc: Eduardo Habkost, Riku Voipio, Philippe Mathieu-Daudé,
	Laurent Vivier, Paolo Bonzini, Richard Henderson

Fix OUTL instructions incorrectly displayed as OUTW.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 target/i386/misc_helper.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/i386/misc_helper.c b/target/i386/misc_helper.c
index 7d61221024..b6b1d41b14 100644
--- a/target/i386/misc_helper.c
+++ b/target/i386/misc_helper.c
@@ -70,7 +70,7 @@ target_ulong helper_inw(CPUX86State *env, uint32_t port)
 void helper_outl(CPUX86State *env, uint32_t port, uint32_t data)
 {
 #ifdef CONFIG_USER_ONLY
-    fprintf(stderr, "outw: port=0x%04x, data=%08x\n", port, data);
+    fprintf(stderr, "outl: port=0x%04x, data=%08x\n", port, data);
 #else
     address_space_stl(&address_space_io, port, data,
                       cpu_get_mem_attrs(env), NULL);
-- 
2.21.3



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-05-21 14:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-17 11:01 [PATCH] target/i386: Fix OUTL debug output Philippe Mathieu-Daudé
2020-05-19  3:39 ` Richard Henderson
2020-05-19 12:23   ` Philippe Mathieu-Daudé
2020-05-21 14:06     ` Paolo Bonzini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.