mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-02-02 04:51:05 +00:00
target/i386: Fix OUTL debug output
Fix OUTL instructions incorrectly displayed as OUTW. Backports commit ce8540fde2cb535923a52a012f57b418eea85e1b from qemu
This commit is contained in:
parent
a93d01c61d
commit
34930da196
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue