Thema: Delphi FSB auslesen

Einzelnen Beitrag anzeigen

scp

Registriert seit: 31. Okt 2003
1.120 Beiträge
 
Delphi 7 Personal
 
#10

Re: FSB auslesen

  Alt 13. Jan 2006, 22:31
Nen neuer Treiber muss es wohl nich sein, aber um DLPortIO oder ähnliches kommst du nicht rum.
Du kannst den Multiplikator auch über das SMBIOS holen, BIOSHelp von Nico hilft da weiter. DMI Entry Type 4, Wert ExternalClock

Delphi-Quellcode:
  // Processor Information
  PDmiType4 = ^TDmiType4;
  TDmiType4 = packed record
    Header : TDmiHeader;
    SocketDesignation: Byte; // Stringindex
    ProcessorType: Byte;
    ProcessorFamily: Byte;
    ProcessorManufacturer: Byte; // Stringindex
    ProcessorID : array[0..1] Of DWORD;
    ProcessorVersion: Byte; // Stringindex
    
    Voltage : Byte;
    ExternalClock: Word;
    MaxSpeed : Word;
    CurrentSpeed: Word;
    Status : Byte;
    ProcessorUpgrade: Byte;
    L1CacheHandle: Word;
    L2CacheHandle: Word;
    L3CacheHandle: Word;
    
    SerialNumber: Byte;
    AssetTag : Byte;
    PartNumber : Byte;
  end;
  Mit Zitat antworten Zitat