EHS/src/system/CPU_ARM64.cpp

46 lines
487 B
C++
Raw Normal View History

2024-02-05 22:25:30 -08:00
#include "ehs/system/CPU.h"
namespace ehs
{
void CPU::RDTSCP(TSC* tsc)
{
}
void CPU::GetManufacturer(Char_8* input)
{
}
UInt_32 CPU::GetInfoBits()
{
return 0;
}
UInt_32 CPU::GetFeatureBits_1()
{
return 0;
}
UInt_32 CPU::GetFeatureBits_2()
{
return 0;
}
UInt_32 CPU::GetExtFeatureBits_1()
{
return 0;
}
UInt_32 CPU::GetExtFeatureBits_2()
{
return 0;
}
UInt_32 CPU::GetExtFeatureBits_3()
{
return 0;
}
void CPU::GetBrand(Char_8* input)
{
}
}