blob: 15c3a38bd3105cf16cc65d996e8d315b30325a6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
;; // SPDX-License-Identifier: Apache-2.0
;; // Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
;; // Licensed under the Apache License, Version 2.0 (see LICENSE file)
;; // Official repository: https://github.com/ne-foss-org/nekernel
[bits 64]
%define kTypeKernel 100
%define kArchAmd64 122
%define kHandoverMagic 0xBADCC
global _HandoverMagic
global _HandoverType
global _HandoverPad
global _HandoverArch
section .botz
_HandoverMagic:
dq kHandoverMagic
_HandoverType:
dw kTypeKernel
_HandoverPad:
dw 0
_HandoverArch:
dw kArchAmd64
|