mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
target-i386/helper: remove EBX macro
Signed-off-by: liguang <lig.fnst@cn.fujitsu.com> Reviewed-by: Andreas Färber <afaerber@suse.de> Reviewed-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
4b34e3ad83
commit
70b513654c
5 changed files with 10 additions and 12 deletions
|
@ -124,7 +124,7 @@ void helper_cpuid(CPUX86State *env)
|
|||
|
||||
cpu_x86_cpuid(env, (uint32_t)env->regs[R_EAX], (uint32_t)ECX, &eax, &ebx, &ecx, &edx);
|
||||
env->regs[R_EAX] = eax;
|
||||
EBX = ebx;
|
||||
env->regs[R_EBX] = ebx;
|
||||
ECX = ecx;
|
||||
EDX = edx;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue