1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 10:57:34 +00:00

Kernel: Add Aarch64 CPU feature detection

This commit is contained in:
konrad 2023-01-08 00:01:25 +01:00 committed by Jelle Raaijmakers
parent 9f736d782c
commit 97dce5d001
4 changed files with 53 additions and 16 deletions

View file

@ -30,6 +30,7 @@ Processor* g_current_processor;
void Processor::initialize(u32 cpu)
{
VERIFY(g_current_processor == nullptr);
m_features = detect_cpu_features();
initialize_exceptions(cpu);