summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/HALKit/AMD64/Paging.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-01-25 03:07:52 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-01-25 03:07:52 +0100
commit0e05e9fd34bd036e9043f20939c53edf967465ce (patch)
tree36e3e6b84534a82c53605a19134e9ab772c11c65 /src/kernel/HALKit/AMD64/Paging.h
parent480ccd897d21823af6128f0e3d8d8cdbf653dd0f (diff)
feat: CF: Add alias for CFDictionary (CFDict).v0.1.3
fix: kernel: CodeMgr improvements and fixes. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/kernel/HALKit/AMD64/Paging.h')
-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 96f87973..41543f5d 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;