Giter Site home page Giter Site logo

thelazytomcat / lib.simplecpuid Goto Github PK

View Code? Open in Web Editor NEW
10.0 3.0 3.0 53 KB

Small library designed to provide some basic parsed information (mainly CPU features) obtained by the CPUID instruction on x86(-64) processors.

License: Mozilla Public License 2.0

Pascal 100.00%
pascal object-pascal delphi fpc lazarus x86 x86-64 windows linux cpuinfo

lib.simplecpuid's People

Contributors

dompiotr85 avatar thelazytomcat avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

lib.simplecpuid's Issues

Possible minor error in GetCR0

In this function, on line 569:

  Function GetCR0: NativeUInt; assembler; register;
  asm
  // CR0 is not accessible in user mode (this function will cause exception).
  // If anyone have any idea on how to read CR0 from normal program, let me know.
  {$IFDEF x64}
    DB  $0F, $20, $C0   // MOV  RAX,  CR0 (problems in FPC before 3.0)
  {$ELSE}
    MOV     EAX,  CR0
  {$ENDIF}
  end;  

I believe the MOV instruction should be

    MOV     RAX,  CR0

As far as using this (since it uses a privileged register), have you considered setting up a Linux distribution, install Free Pascal, write a test rig, then sudo the program? Or in the alternative, compile it and a test rig on Windows, then run it using "run as Administrator"?

Skip the last one, running as Administrator doesn't work either. I just tried it. Oh well.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.