Cosmos/source/Cosmos.Core/PCInformation/RDMSROperation.cs
Valentin Charbonnier 2c28dff298 First CPU Impl.
2018-03-26 21:20:51 +02:00

15 lines
486 B
C#

namespace Cosmos.Core.PCInformation
{
/// <summary>
/// Credit to: http://www.sandpile.org/x86/msr.htm
/// There is a lot more of registers. I will not add them
/// </summary>
public enum RDMSROperation : uint
{
GetTimeStampCounterValue = 0x00000010,
GetTimeStampCounterAdjustement = 0x0000003B,
GetProcessorId = 0xC0000103,
GetMaximumFrequencyClockCount = 0x000000E7,
GetActualFrequencyClockCount = 0x000000E8
}
}