summaryrefslogtreecommitdiffhomepage
path: root/Private/FirmwareKit
diff options
context:
space:
mode:
authorAmlal <amlalelmahrouss@icloud.com>2024-04-28 15:13:03 +0000
committerAmlal <amlalelmahrouss@icloud.com>2024-04-28 15:13:03 +0000
commit14f10cc0b35155ddb19ec9069ebb884246e61dcf (patch)
treea988617d1c511cf04eb2c2392829a37d82a59e2e /Private/FirmwareKit
parentdb0681412191dcceb5aa99cf31fb8339d6bc4adb (diff)
parent346558208d39a036effe3a4ec232fa5df5a3c8e7 (diff)
Merged in MHR-18 (pull request #8)
MHR-18: A lot of fixes and improvements, mostly related to disk I/O and kernel stability.
Diffstat (limited to 'Private/FirmwareKit')
-rw-r--r--Private/FirmwareKit/Handover.hxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/Private/FirmwareKit/Handover.hxx b/Private/FirmwareKit/Handover.hxx
index afec440d..da9a3bbf 100644
--- a/Private/FirmwareKit/Handover.hxx
+++ b/Private/FirmwareKit/Handover.hxx
@@ -25,6 +25,7 @@
#define kHandoverVersion 0x1011
#define kHandoverStructSz sizeof(HEL::HandoverHeader)
+#define kHandoverHeapStart (0xfffffff80000000)
namespace NewOS::HEL {
/**
@@ -81,6 +82,8 @@ struct HandoverInformationHeader {
UInt64 f_FirmwareSpecific[8];
};
+enum { kHandoverSpecificKind, kHandoverSpecificAttrib, };
+
/// @brief Bootloader main type.
typedef void (*BootMainKind)(NewOS::HEL::HandoverInformationHeader* handoverInfo);