Added better kernel arguments reading

This commit is contained in:
Alex
2022-10-20 01:07:39 +03:00
parent 8673a73ee4
commit ea61229b18
5 changed files with 356 additions and 9 deletions

View File

@ -7,6 +7,7 @@
#ifdef __cplusplus
#include <display.hpp>
#include <symbols.hpp>
#include <kconfig.hpp>
#include <power.hpp>
#include <pci.hpp>
#endif
@ -17,6 +18,7 @@ extern Video::Display *Display;
extern SymbolResolver::Symbols *KernelSymbolTable;
extern Power::Power *PowerManager;
extern PCI::PCI *PCIManager;
extern KernelConfig Config;
#endif
EXTERNC void KPrint(const char *format, ...);