EHS/src/system/CPU_ARM64.cpp
Karutoh bcd71cf2b5
All checks were successful
Build & Release / Windows-AMD64-Build (push) Successful in 1m8s
Build & Release / Linux-AMD64-Build (push) Successful in 1m30s
Build & Release / Linux-AARCH64-Build (push) Successful in 3m21s
Adjusted workflow.
2024-02-05 22:25:30 -08:00

46 lines
487 B
C++

#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)
{
}
}