kernel32: Set dwProcessorType on ARM.

This commit is contained in:
André Hentschel 2011-06-15 20:53:35 +02:00 committed by Alexandre Julliard
parent 3eb91fbc3c
commit 4f1aae76af
1 changed files with 7 additions and 0 deletions

View File

@ -157,6 +157,13 @@ VOID WINAPI GetSystemInfo(
case PROCESSOR_ARCHITECTURE_AMD64:
si->dwProcessorType = PROCESSOR_AMD_X8664;
break;
case PROCESSOR_ARCHITECTURE_ARM:
switch (sci.Level)
{
case 4: si->dwProcessorType = PROCESSOR_ARM_7TDMI; break;
default: si->dwProcessorType = PROCESSOR_ARM920;
}
break;
default:
FIXME("Unknown processor architecture %x\n", sci.Architecture);
si->dwProcessorType = 0;