added few enumclass item

This commit is contained in:
hyzboy 2023-07-13 00:58:57 +08:00
parent 37fa338586
commit 47fa987153
No known key found for this signature in database
GPG Key ID: 067EE4525D4FB6D3
2 changed files with 11 additions and 3 deletions

View File

@ -7,7 +7,9 @@ namespace hgl
enum class CpuArch enum class CpuArch
{ {
x86_64, x86_64,
ARMv8,
ARMv8, //32+64
ARMv9, //64
};// };//
struct CpuInfo struct CpuInfo

View File

@ -12,12 +12,18 @@ namespace hgl
Hisilicon, ///<海思 Hisilicon, ///<海思
Samsung, ///<三星 Samsung, ///<三星
MediaTek, ///<联发科 MediaTek, ///<联发科
//Rockchip, ///<瑞芯微
//Intel, ///<英特尔
Unisoc, ///<展锐 Unisoc, ///<展锐
Spreadtrum, ///<展讯 Spreadtrum, ///<展讯
JLQ, ///<瓴盛 JLQ, ///<瓴盛
//Maxvell, ///<马维尔
//Broadcom, ///<博通
//TI, ///<德州仪器 //TI, ///<德州仪器
//Rockchip, ///<瑞芯微
//Intel, ///<英特尔
//nVidia, ///<英伟达
//AMD, ///<AMD
//Google, ///<谷歌
ENUM_CLASS_RANGE(Unknow,JLQ) ENUM_CLASS_RANGE(Unknow,JLQ)
}; };