Fixed the state of the 486 DX2 WB CPU's used by the PC 330.

This commit is contained in:
OBattler
2023-10-13 06:00:38 +02:00
parent 15104475a1
commit be4d160024
2 changed files with 8 additions and 5 deletions

View File

@@ -1920,7 +1920,10 @@ cpu_CPUID(void)
EDX = 0x49656e69;
ECX = 0x6c65746e;
} else if (EAX == 1) {
EAX = CPUID;
if ((CPUID == 0x0436) && (cr0 & (1 << 29)))
EAX = 0x0470;
else
EAX = CPUID;
EBX = ECX = 0;
EDX = CPUID_FPU | CPUID_VME;
} else