summaryrefslogtreecommitdiffhomepage
path: root/Kernel/HALKit
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-08-04 16:50:52 +0200
committerAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-08-04 16:50:52 +0200
commit34bb37c9a464ab0dfccfa5ff217a283e36b32693 (patch)
treee1d6c5c81d840f5747942e20fe6dd2e0015ec536 /Kernel/HALKit
parent1b92501a27f8781945bc6b19bb43e22588d4c933 (diff)
[IMP] [MHR-39] Ticket has been implemented.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Kernel/HALKit')
-rw-r--r--Kernel/HALKit/AMD64/HalBoot.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/HALKit/AMD64/HalBoot.asm b/Kernel/HALKit/AMD64/HalBoot.asm
index 6cd119ac..7bda9635 100644
--- a/Kernel/HALKit/AMD64/HalBoot.asm
+++ b/Kernel/HALKit/AMD64/HalBoot.asm
@@ -16,7 +16,7 @@
%define kArchAmd64 122
%define kHandoverMagic 0xBADCC
-section .newosldr
+section .ldr
HandoverMagic: dq kHandoverMagic
HandoverType: dw kTypeKernel
@@ -24,7 +24,7 @@ HandoverArch: dw kArchAmd64
;; This NewBootStart points to Main.
HandoverStart: dq hal_init_platform
-section .text
+section .start
[global ke_startup_platform]