Kod pobrany z http://www.borland.nq.pl
void __fastcall TForm1::Button1Click(TObject *Sender)
{
const DelayTime = 500;
DWORD TimerHi, TimerLo;
Integer PriorityClass, Priority;
PriorityClass = GetPriorityClass(GetCurrentProcess());
Priority = GetThreadPriority(GetCurrentThread());
SetPriorityClass(GetCurrentProcess(), REALTIME_PRIORITY_CLASS);
SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_TIME_CRITICAL);
Sleep(10);
asm
{
dw 310Fh
mov TimerLo, eax
mov TimerHi, edx
}
Sleep(DelayTime);
asm
{
dw 310Fh
sub eax, TimerLo
sbb edx, TimerHi
mov TimerLo, eax
mov TimerHi, edx
}
SetThreadPriority(GetCurrentThread, Priority);
SetPriorityClass(GetCurrentProcess, PriorityClass);
int CPUSpeed = TimerLo / (1000 * DelayTime);
Label1->Caption = "CPU speed: " + IntToStr(CPUSpeed) + "MHz";
}
Nadal pozostal problem z typem procesora. Jak go odczytac ?