diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-08-08 14:19:42 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-08-08 14:19:42 +0200 |
| commit | df8393cebbae61ed7686be17a28d80c657f49b7e (patch) | |
| tree | 96a67cbbe80a69f2b3c59a94a517741b6583a88b /Boot/BootKit | |
| parent | 209ebb8caa774c8d73ead8e0eba3bd65d138930f (diff) | |
[IMP] Code cleanup and improvements of the bootloader, still trying to
figure what is going wrong on the kernel's DLL.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Boot/BootKit')
| -rw-r--r-- | Boot/BootKit/KernelLoader.hxx (renamed from Boot/BootKit/ProgramLoader.hxx) | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Boot/BootKit/ProgramLoader.hxx b/Boot/BootKit/KernelLoader.hxx index 09fff89b..3c98a238 100644 --- a/Boot/BootKit/ProgramLoader.hxx +++ b/Boot/BootKit/KernelLoader.hxx @@ -14,20 +14,20 @@ namespace Boot { using namespace Kernel; - class ProgramLoader; + class KernelLoader; /// @brief Program loader class /// @package nl.zeta.boot.api - class ProgramLoader final + class KernelLoader final { public: - explicit ProgramLoader() = delete; - ~ProgramLoader() = default; + explicit KernelLoader() = delete; + ~KernelLoader() = default; - explicit ProgramLoader(Kernel::VoidPtr blob); + explicit KernelLoader(Kernel::VoidPtr blob); - ProgramLoader& operator=(const ProgramLoader&) = default; - ProgramLoader(const ProgramLoader&) = default; + KernelLoader& operator=(const KernelLoader&) = default; + KernelLoader(const KernelLoader&) = default; void Start(HEL::HandoverInformationHeader* handover); const char* GetName(); @@ -36,7 +36,7 @@ namespace Boot private: Char fBlobName[255]; - Char* fStackPtr{nullptr}; + Char* fHeapForProgram{nullptr}; VoidPtr fStartAddress{nullptr}; VoidPtr fBlob{nullptr}; }; |
