Kernel: Add Aarch64 CPU feature detection

This commit is contained in:
konrad 2023-01-08 00:01:25 +01:00 committed by Jelle Raaijmakers
commit 97dce5d001
Notes: sideshowbarker 2024-07-19 16:58:51 +09:00
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);