From 34930da1965e6c648763db7357bf065ab4f1cddf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Mon, 15 Jun 2020 12:56:18 -0400 Subject: [PATCH] target/i386: Fix OUTL debug output Fix OUTL instructions incorrectly displayed as OUTW. Backports commit ce8540fde2cb535923a52a012f57b418eea85e1b from qemu --- qemu/target/i386/misc_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu/target/i386/misc_helper.c b/qemu/target/i386/misc_helper.c index be45d974..c6ce439e 100644 --- a/qemu/target/i386/misc_helper.c +++ b/qemu/target/i386/misc_helper.c @@ -71,7 +71,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(&env->uc->as, port, data, cpu_get_mem_attrs(env), NULL);