1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 14:17:34 +00:00

Kernel: Detect Aarch64 virtual address bit width with CPU ID registers

This commit is contained in:
konrad 2023-01-08 12:22:47 +01:00 committed by Jelle Raaijmakers
parent 401fc6afae
commit 5791072280
4 changed files with 21 additions and 2 deletions

View file

@ -278,5 +278,6 @@ StringView cpu_feature_to_description(CPUFeature::Type const&);
NonnullOwnPtr<KString> build_cpu_feature_names(CPUFeature::Type const&);
u8 detect_physical_address_bit_width();
u8 detect_virtual_address_bit_width();
}