1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:37:44 +00:00

Kernel: Add support for hypervisor CPUID feature

This commit is contained in:
Jean-Baptiste Boric 2021-07-11 19:08:27 +02:00 committed by Andreas Kling
parent bee75c1f24
commit 4cc346fb19
2 changed files with 5 additions and 0 deletions

View file

@ -54,6 +54,7 @@ enum class CPUFeature : u32 {
AVX = (1 << 22),
FXSR = (1 << 23),
LM = (1 << 24),
HYPERVISOR = (1 << 25),
};
}