Delphi-PRAXiS
Seite 4 von 5   « Erste     234 5      

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Win32/Win64 API (native code) (https://www.delphipraxis.net/17-win32-win64-api-native-code/)
-   -   Delphi CPUID Intel&AMD (https://www.delphipraxis.net/114801-cpuid-intel-amd.html)

Razor 6. Jun 2008 18:36

Re: CPUID Intel&AMD
 
Some usefull info :)

Pentium-M (centrino) - Celeron-M
Frequency to FID
FID = frequency / bus_speed (bus speed is usually 100 or 133 Mhz, depending on the model).


FID to Frequency
frequency = FID * bus_speed (in Mhz) (bus speed is usually 100 or 133 Mhz, depending on the model).


Voltage to VID
VID = (voltage - 700) / 16


VID to Voltage
voltage = (VID * 16) + 700 (in milivolts).

Razor 7. Jun 2008 18:32

Re: CPUID Intel&AMD
 
Result...

http://img.techpowerup.org/080607/Capture004.jpg

Razor 9. Jun 2008 15:03

Re: CPUID Intel&AMD
 
800 views and no replys or interest sad sad.. :?

Zacherl 9. Jun 2008 15:42

Re: CPUID Intel&AMD
 
You could publish some code ..

Muetze1 9. Jun 2008 23:47

Re: CPUID Intel&AMD
 
What do you expect that we should reply? It is just a picture. So, nice Photoshop? nice Label Caption assignment? Or nice work? We do not know and we also can not verify.

Does it run just on your CPU? Runs it also on other CPUs? Is the result correct? Is the result correct for other CPUs?

What did you expect? Something like "Oh, nice - you're still trying..."? So dude, please tell me what did you expect, that you are now yelling about no reaction?

Razor 10. Jun 2008 07:23

Re: CPUID Intel&AMD
 
Muetze you suck in english sorry to tell you that but yea skipping class isn't a good idea :P
And no its no photoshop again you are soo funny.
IA32_PERF_STATUS is for all sorts of things but how can i find out max multiplier.


I'll write my own component i don't some snippets off this forum.Meh :zwinker:

hathor 10. Jun 2008 08:14

Re: CPUID Intel&AMD
 
Liste der Anhänge anzeigen (Anzahl: 1)
Hi, David! Give us more...

Razor 10. Jun 2008 08:15

Re: CPUID Intel&AMD
 
Hehe you found out right :-D.Well its gonna look like that yea however people say i copy cpuz style.Damn i hate them..Yes i will post more after i finish writting component.


I will also make shared memory hathor!

Razor 10. Jun 2008 08:57

Re: CPUID Intel&AMD
 
Someone test this please.... :)

Delphi-Quellcode:
function TCpuinfo.getcoremulti_current:integer;
var
eax,edx:dword;
begin
  RdMSR($198, eax,edx) ;
  result:=eax SHR 8 and $ff// Current multiplier
end;

function TCpuinfo.getcoremulti_max:integer;
var
eax,edx:dword;
begin
  RdMSR($198, eax,edx) ;
  result:=edx SHR 8 and $ff// Maximum multiplier
end;

function TCpuinfo.getcoremulti_low:integer;
var
eax,edx:dword;
begin
  RdMSR($198, eax,edx) ;
  result:=edx SHR 24 and $ff// Low multiplier
end;

hitzi 10. Jun 2008 09:13

Re: CPUID Intel&AMD
 
Test what? What should happen? What do you expect? Oh and your functions dont work - RdMSR is unknown. You said nothing about what is needed for running these functions and I dont read all of your threads to understand where this RdMSR is defined.

I'm sorry to tell you "test failed!" ;)


Alle Zeitangaben in WEZ +1. Es ist jetzt 23:10 Uhr.
Seite 4 von 5   « Erste     234 5      

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz