2022-09-05 14:13:51 +00:00
|
|
|
#pragma once
|
|
|
|
#include "cpu/Features.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
namespace CPU
|
|
|
|
{
|
|
|
|
const char* get_vendor_string();
|
|
|
|
const char* get_brand_string();
|
2022-09-07 17:41:08 +00:00
|
|
|
void log_cpu_information();
|
2022-09-05 14:13:51 +00:00
|
|
|
uint64_t get_feature_bitmask();
|
|
|
|
uint64_t get_initial_apic_id();
|
|
|
|
bool has_feature(CPU::Features);
|
|
|
|
}
|