cleanup: move some logic out of kernel Main.cpp into separate files/functions

This commit is contained in:
2026-03-03 20:30:59 +01:00
parent 144ae2a843
commit b0e6dd040d
6 changed files with 110 additions and 53 deletions
+17
View File
@@ -0,0 +1,17 @@
/*
* Init.hpp
* Driver initialization orchestration
* Copyright (c) 2025 Daniel Hammer
*/
#pragma once
namespace Drivers {
// Initialize Intel GPU driver and update the cursor framebuffer if found.
void InitializeGraphics();
// Initialize network driver (E1000, falling back to E1000E) and the net stack.
void InitializeNetwork();
}