Hello,
Currently, I'm working to implement myself WinAPI functions. However, I could not find anything matching with : __cpuid like : https://gist.github.com/boxmein/7d8e5fae7febafc5851e
Any idea ?
Thread overview | ||||||||
---|---|---|---|---|---|---|---|---|
|
November 01, 2021 __cpuid like in C | ||||
---|---|---|---|---|
| ||||
Hello, Currently, I'm working to implement myself WinAPI functions. However, I could not find anything matching with : __cpuid like : https://gist.github.com/boxmein/7d8e5fae7febafc5851e Any idea ? |
November 02, 2021 Re: __cpuid like in C | ||||
---|---|---|---|---|
| ||||
Posted in reply to Arsium | I think you are wanting this? https://dlang.org/phobos/core_cpuid.html#.processor |
November 01, 2021 Re: __cpuid like in C | ||||
---|---|---|---|---|
| ||||
Posted in reply to Arsium | On Monday, 1 November 2021 at 16:00:05 UTC, Arsium wrote: >Hello, Currently, I'm working to implement myself WinAPI functions. However, I could not find anything matching with : __cpuid like : https://gist.github.com/boxmein/7d8e5fae7febafc5851e Any idea ? Not sure if it's exactly the same, but there is |
November 01, 2021 Re: __cpuid like in C | ||||
---|---|---|---|---|
| ||||
Posted in reply to rikki cattermole | On Monday, 1 November 2021 at 16:01:38 UTC, rikki cattermole wrote:
>
> I think you are wanting this?
>
> https://dlang.org/phobos/core_cpuid.html#.processor
Oh thx my bad I did not see it!
|
November 01, 2021 Re: __cpuid like in C | ||||
---|---|---|---|---|
| ||||
Posted in reply to Paul Backus | On Monday, 1 November 2021 at 16:02:20 UTC, Paul Backus wrote: >On Monday, 1 November 2021 at 16:00:05 UTC, Arsium wrote: >Hello, Currently, I'm working to implement myself WinAPI functions. However, I could not find anything matching with : __cpuid like : https://gist.github.com/boxmein/7d8e5fae7febafc5851e Any idea ? Not sure if it's exactly the same, but there is Oh thx my bad I did not see it! |
November 02, 2021 Re: __cpuid like in C | ||||
---|---|---|---|---|
| ||||
Posted in reply to Arsium | On Monday, 1 November 2021 at 16:16:12 UTC, Arsium wrote: >On Monday, 1 November 2021 at 16:02:20 UTC, Paul Backus wrote: >On Monday, 1 November 2021 at 16:00:05 UTC, Arsium wrote: >Hello, Currently, I'm working to implement myself WinAPI functions. However, I could not find anything matching with : __cpuid like : https://gist.github.com/boxmein/7d8e5fae7febafc5851e Any idea ? Not sure if it's exactly the same, but there is Oh thx my bad I did not see it! if you want even more cpuid details there is also https://github.com/dd86k/ddcpuid/ |