summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/HALKit/AMD64
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-05 23:29:42 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-05 23:29:42 +0100
commita5f3fdf32ba6aa34a5dd05eeb807446a9f046393 (patch)
tree3695547276413e1f4608a667afaceb66d85b0a7c /src/kernel/HALKit/AMD64
parentafdddeed77592bbbcd9b47611b6218a74d4ee987 (diff)
[FEAT] CoreGfx: Introduce CGVec container, CoreAccess.h improvements.
[CHORE] Kernel/Boot: format.sh. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/kernel/HALKit/AMD64')
-rw-r--r--src/kernel/HALKit/AMD64/Paging.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/kernel/HALKit/AMD64/Paging.h b/src/kernel/HALKit/AMD64/Paging.h
index 1fbde52c..89d48e8a 100644
--- a/src/kernel/HALKit/AMD64/Paging.h
+++ b/src/kernel/HALKit/AMD64/Paging.h
@@ -56,7 +56,9 @@ namespace Detail {
kPageEnable = 31,
};
- inline UInt8 control_register_cast(ControlRegisterBits reg) { return static_cast<UInt8>(reg); }
+ inline UInt8 control_register_cast(ControlRegisterBits reg) {
+ return static_cast<UInt8>(reg);
+ }
} // namespace Detail
auto mm_alloc_bitmap(Boolean wr, Boolean user, SizeT size, Bool is_page, SizeT pad = 0) -> VoidPtr;