summaryrefslogtreecommitdiffhomepage
path: root/Private/Source
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-29 16:32:49 +0100
committerAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-29 16:34:06 +0100
commitf3992c78790af42c53ed149cf04751261393d8e8 (patch)
tree065fc8b2c6bb9305aefe5e4c2bf585b6cc20dafe /Private/Source
parent1a22cb4fd330bf01f1c94bd12fcad9ab278b4f80 (diff)
Kernel: Pre-Release
- Kernel - Bootloader Working on AHCI support, AHCI is very important to bring fast I/O support, ACPI and APIC is also in WiP for AMD64 HAL this time. Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Private/Source')
-rw-r--r--Private/Source/Array.cxx13
-rw-r--r--Private/Source/ArrayList.cxx13
-rw-r--r--Private/Source/Atom.cxx13
-rw-r--r--Private/Source/Crc32.cxx13
-rw-r--r--Private/Source/CxxAbi.cxx13
-rw-r--r--Private/Source/Defines.cxx13
-rw-r--r--Private/Source/DeviceManager.cxx13
-rw-r--r--Private/Source/DriveManager.cxx13
-rw-r--r--Private/Source/ErrorOr.cxx13
-rw-r--r--Private/Source/FileManager.cxx13
-rw-r--r--Private/Source/GUIDWrapper.cxx13
-rw-r--r--Private/Source/HError.cxx13
-rw-r--r--Private/Source/IndexableProperty.cxx13
-rw-r--r--Private/Source/Json.cxx13
-rw-r--r--Private/Source/KernelCheck.cxx13
-rw-r--r--Private/Source/KernelHeap.cxx13
-rw-r--r--Private/Source/LockDelegate.cxx13
-rw-r--r--Private/Source/MutableArray.cxx13
-rw-r--r--Private/Source/Network/IP.cxx13
-rw-r--r--Private/Source/Network/NetworkDevice.cxx13
-rw-r--r--Private/Source/New+Delete.cxx13
-rw-r--r--Private/Source/NewFS+FileManager.cxx13
-rw-r--r--Private/Source/NewFS+IO.cxx13
-rw-r--r--Private/Source/NewFS+Journal.cxx13
-rw-r--r--Private/Source/OwnPtr.cxx13
-rw-r--r--Private/Source/PEFCodeManager.cxx13
-rw-r--r--Private/Source/PRDT.cxx13
-rw-r--r--Private/Source/PageAllocator.cxx13
-rw-r--r--Private/Source/PageManager.cxx13
-rw-r--r--Private/Source/Pmm.cxx13
-rw-r--r--Private/Source/ProcessManager.cxx13
-rw-r--r--Private/Source/Property.cxx13
-rw-r--r--Private/Source/Ref.cxx13
-rw-r--r--Private/Source/SMPManager.cxx13
-rw-r--r--Private/Source/Semaphore.cxx13
-rw-r--r--Private/Source/Storage/ATA.cxx13
-rw-r--r--Private/Source/Storage/NVME.cxx13
-rw-r--r--Private/Source/Storage/Storage.cxx13
-rw-r--r--Private/Source/String.cxx13
-rw-r--r--Private/Source/Timer.cxx13
-rw-r--r--Private/Source/URL.cxx13
-rw-r--r--Private/Source/UserHeap.cxx13
-rw-r--r--Private/Source/Utils.cxx13
-rw-r--r--Private/Source/Variant.cxx13
44 files changed, 220 insertions, 352 deletions
diff --git a/Private/Source/Array.cxx b/Private/Source/Array.cxx
index 368c41c2..a8197ae0 100644
--- a/Private/Source/Array.cxx
+++ b/Private/Source/Array.cxx
@@ -1,10 +1,7 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NewKit/Array.hpp>
diff --git a/Private/Source/ArrayList.cxx b/Private/Source/ArrayList.cxx
index 797d7deb..d61fc17a 100644
--- a/Private/Source/ArrayList.cxx
+++ b/Private/Source/ArrayList.cxx
@@ -1,10 +1,7 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NewKit/ArrayList.hpp>
diff --git a/Private/Source/Atom.cxx b/Private/Source/Atom.cxx
index aab6e30e..a013d0fd 100644
--- a/Private/Source/Atom.cxx
+++ b/Private/Source/Atom.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NewKit/Atom.hpp>
diff --git a/Private/Source/Crc32.cxx b/Private/Source/Crc32.cxx
index b451d4d4..53de6d13 100644
--- a/Private/Source/Crc32.cxx
+++ b/Private/Source/Crc32.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NewKit/Crc32.hpp>
diff --git a/Private/Source/CxxAbi.cxx b/Private/Source/CxxAbi.cxx
index 1c004227..88272377 100644
--- a/Private/Source/CxxAbi.cxx
+++ b/Private/Source/CxxAbi.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <KernelKit/DebugOutput.hpp>
#include <NewKit/CxxAbi.hpp>
diff --git a/Private/Source/Defines.cxx b/Private/Source/Defines.cxx
index 176a9935..71ef3885 100644
--- a/Private/Source/Defines.cxx
+++ b/Private/Source/Defines.cxx
@@ -1,10 +1,7 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NewKit/Defines.hpp>
diff --git a/Private/Source/DeviceManager.cxx b/Private/Source/DeviceManager.cxx
index e5b84bd3..752fcd77 100644
--- a/Private/Source/DeviceManager.cxx
+++ b/Private/Source/DeviceManager.cxx
@@ -1,10 +1,7 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <KernelKit/DeviceManager.hpp>
diff --git a/Private/Source/DriveManager.cxx b/Private/Source/DriveManager.cxx
index 27f6cc42..2a5ea394 100644
--- a/Private/Source/DriveManager.cxx
+++ b/Private/Source/DriveManager.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <KernelKit/DebugOutput.hpp>
#include <KernelKit/DriveManager.hpp>
diff --git a/Private/Source/ErrorOr.cxx b/Private/Source/ErrorOr.cxx
index 0887986a..bce6b60d 100644
--- a/Private/Source/ErrorOr.cxx
+++ b/Private/Source/ErrorOr.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NewKit/ErrorOr.hpp>
diff --git a/Private/Source/FileManager.cxx b/Private/Source/FileManager.cxx
index e38bea79..addd5e02 100644
--- a/Private/Source/FileManager.cxx
+++ b/Private/Source/FileManager.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <KernelKit/FileManager.hpp>
#include <NewKit/ErrorID.hpp>
diff --git a/Private/Source/GUIDWrapper.cxx b/Private/Source/GUIDWrapper.cxx
index e83e002e..d7c592e5 100644
--- a/Private/Source/GUIDWrapper.cxx
+++ b/Private/Source/GUIDWrapper.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <CFKit/GUIDWrapper.hpp>
diff --git a/Private/Source/HError.cxx b/Private/Source/HError.cxx
index b82d4296..ced95401 100644
--- a/Private/Source/HError.cxx
+++ b/Private/Source/HError.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <KernelKit/HError.hpp>
diff --git a/Private/Source/IndexableProperty.cxx b/Private/Source/IndexableProperty.cxx
index 778acd19..cdc7b93d 100644
--- a/Private/Source/IndexableProperty.cxx
+++ b/Private/Source/IndexableProperty.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
//! @brief Filesystem Indexer.
diff --git a/Private/Source/Json.cxx b/Private/Source/Json.cxx
index 74daee04..26fe6c02 100644
--- a/Private/Source/Json.cxx
+++ b/Private/Source/Json.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NewKit/Json.hpp>
diff --git a/Private/Source/KernelCheck.cxx b/Private/Source/KernelCheck.cxx
index 4fc24918..ae8326a5 100644
--- a/Private/Source/KernelCheck.cxx
+++ b/Private/Source/KernelCheck.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <ArchKit/ArchKit.hpp>
#include <KernelKit/DebugOutput.hpp>
diff --git a/Private/Source/KernelHeap.cxx b/Private/Source/KernelHeap.cxx
index a1032394..208a7223 100644
--- a/Private/Source/KernelHeap.cxx
+++ b/Private/Source/KernelHeap.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NewKit/Crc32.hpp>
#include <NewKit/KernelHeap.hpp>
diff --git a/Private/Source/LockDelegate.cxx b/Private/Source/LockDelegate.cxx
index d34170b7..30366a86 100644
--- a/Private/Source/LockDelegate.cxx
+++ b/Private/Source/LockDelegate.cxx
@@ -1,10 +1,7 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NewKit/LockDelegate.hpp>
diff --git a/Private/Source/MutableArray.cxx b/Private/Source/MutableArray.cxx
index de9df624..f29c2ef5 100644
--- a/Private/Source/MutableArray.cxx
+++ b/Private/Source/MutableArray.cxx
@@ -1,10 +1,7 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NewKit/MutableArray.hpp>
diff --git a/Private/Source/Network/IP.cxx b/Private/Source/Network/IP.cxx
index b1b45521..c903dc95 100644
--- a/Private/Source/Network/IP.cxx
+++ b/Private/Source/Network/IP.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NetworkKit/IP.hpp>
#include <NewKit/Utils.hpp>
diff --git a/Private/Source/Network/NetworkDevice.cxx b/Private/Source/Network/NetworkDevice.cxx
index 8443467c..0d9af73d 100644
--- a/Private/Source/Network/NetworkDevice.cxx
+++ b/Private/Source/Network/NetworkDevice.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NetworkKit/NetworkDevice.hpp>
diff --git a/Private/Source/New+Delete.cxx b/Private/Source/New+Delete.cxx
index 709d8361..fbcc7787 100644
--- a/Private/Source/New+Delete.cxx
+++ b/Private/Source/New+Delete.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NewKit/KernelHeap.hpp>
#include <NewKit/New.hpp>
diff --git a/Private/Source/NewFS+FileManager.cxx b/Private/Source/NewFS+FileManager.cxx
index 51959d0b..e03cc471 100644
--- a/Private/Source/NewFS+FileManager.cxx
+++ b/Private/Source/NewFS+FileManager.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <KernelKit/FileManager.hpp>
diff --git a/Private/Source/NewFS+IO.cxx b/Private/Source/NewFS+IO.cxx
index fefb2338..7e5d4f50 100644
--- a/Private/Source/NewFS+IO.cxx
+++ b/Private/Source/NewFS+IO.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <KernelKit/DriveManager.hpp>
#include <KernelKit/FileManager.hpp>
diff --git a/Private/Source/NewFS+Journal.cxx b/Private/Source/NewFS+Journal.cxx
index a06249b2..7b76149d 100644
--- a/Private/Source/NewFS+Journal.cxx
+++ b/Private/Source/NewFS+Journal.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <KernelKit/DebugOutput.hpp>
#include <KernelKit/FileManager.hpp>
diff --git a/Private/Source/OwnPtr.cxx b/Private/Source/OwnPtr.cxx
index c2382502..a306cbd7 100644
--- a/Private/Source/OwnPtr.cxx
+++ b/Private/Source/OwnPtr.cxx
@@ -1,10 +1,7 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NewKit/OwnPtr.hpp>
diff --git a/Private/Source/PEFCodeManager.cxx b/Private/Source/PEFCodeManager.cxx
index c1340054..e6296a2b 100644
--- a/Private/Source/PEFCodeManager.cxx
+++ b/Private/Source/PEFCodeManager.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <KernelKit/DebugOutput.hpp>
#include <KernelKit/FileManager.hpp>
diff --git a/Private/Source/PRDT.cxx b/Private/Source/PRDT.cxx
index 4105b6bc..cf3ceb64 100644
--- a/Private/Source/PRDT.cxx
+++ b/Private/Source/PRDT.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <KernelKit/DebugOutput.hpp>
#include <NewKit/String.hpp>
diff --git a/Private/Source/PageAllocator.cxx b/Private/Source/PageAllocator.cxx
index 060ce011..990b738b 100644
--- a/Private/Source/PageAllocator.cxx
+++ b/Private/Source/PageAllocator.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <ArchKit/ArchKit.hpp>
#include <KernelKit/DebugOutput.hpp>
diff --git a/Private/Source/PageManager.cxx b/Private/Source/PageManager.cxx
index c801fe07..758d69c7 100644
--- a/Private/Source/PageManager.cxx
+++ b/Private/Source/PageManager.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <KernelKit/DebugOutput.hpp>
#include <NewKit/PageManager.hpp>
diff --git a/Private/Source/Pmm.cxx b/Private/Source/Pmm.cxx
index 58f3e4a2..6ac8c7d2 100644
--- a/Private/Source/Pmm.cxx
+++ b/Private/Source/Pmm.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <KernelKit/DebugOutput.hpp>
#include <NewKit/Pmm.hpp>
diff --git a/Private/Source/ProcessManager.cxx b/Private/Source/ProcessManager.cxx
index c3b07918..17bd8075 100644
--- a/Private/Source/ProcessManager.cxx
+++ b/Private/Source/ProcessManager.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
/***********************************************************************************/
/// @file ProcessManager.cxx
diff --git a/Private/Source/Property.cxx b/Private/Source/Property.cxx
index cdb72e51..9df9598c 100644
--- a/Private/Source/Property.cxx
+++ b/Private/Source/Property.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <CFKit/Property.hpp>
diff --git a/Private/Source/Ref.cxx b/Private/Source/Ref.cxx
index 8b94411e..f8e9f8b5 100644
--- a/Private/Source/Ref.cxx
+++ b/Private/Source/Ref.cxx
@@ -1,10 +1,7 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NewKit/Ref.hpp>
diff --git a/Private/Source/SMPManager.cxx b/Private/Source/SMPManager.cxx
index 3db349fe..66595ab9 100644
--- a/Private/Source/SMPManager.cxx
+++ b/Private/Source/SMPManager.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <ArchKit/ArchKit.hpp>
#include <KernelKit/ProcessManager.hpp>
diff --git a/Private/Source/Semaphore.cxx b/Private/Source/Semaphore.cxx
index ba5a2b26..32051802 100644
--- a/Private/Source/Semaphore.cxx
+++ b/Private/Source/Semaphore.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <KernelKit/ProcessManager.hpp>
#include <KernelKit/Semaphore.hpp>
diff --git a/Private/Source/Storage/ATA.cxx b/Private/Source/Storage/ATA.cxx
index 05549e7a..61a58fb1 100644
--- a/Private/Source/Storage/ATA.cxx
+++ b/Private/Source/Storage/ATA.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <ArchKit/ArchKit.hpp>
#include <StorageKit/ATA.hpp>
diff --git a/Private/Source/Storage/NVME.cxx b/Private/Source/Storage/NVME.cxx
index 7e4c937f..e1c8fbfa 100644
--- a/Private/Source/Storage/NVME.cxx
+++ b/Private/Source/Storage/NVME.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <StorageKit/NVME.hpp>
diff --git a/Private/Source/Storage/Storage.cxx b/Private/Source/Storage/Storage.cxx
index 2fd5b29b..bba4be1f 100644
--- a/Private/Source/Storage/Storage.cxx
+++ b/Private/Source/Storage/Storage.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <StorageKit/Storage.hpp>
diff --git a/Private/Source/String.cxx b/Private/Source/String.cxx
index b51a560b..23955068 100644
--- a/Private/Source/String.cxx
+++ b/Private/Source/String.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NewKit/String.hpp>
#include <NewKit/Utils.hpp>
diff --git a/Private/Source/Timer.cxx b/Private/Source/Timer.cxx
index e802f734..ecca679a 100644
--- a/Private/Source/Timer.cxx
+++ b/Private/Source/Timer.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <KernelKit/Timer.hpp>
diff --git a/Private/Source/URL.cxx b/Private/Source/URL.cxx
index e471c0c1..ae88678a 100644
--- a/Private/Source/URL.cxx
+++ b/Private/Source/URL.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <CFKit/URL.hpp>
#include <KernelKit/DebugOutput.hpp>
diff --git a/Private/Source/UserHeap.cxx b/Private/Source/UserHeap.cxx
index cc243904..35dfc429 100644
--- a/Private/Source/UserHeap.cxx
+++ b/Private/Source/UserHeap.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NewKit/PageManager.hpp>
#include <NewKit/UserHeap.hpp>
diff --git a/Private/Source/Utils.cxx b/Private/Source/Utils.cxx
index ecbd56f4..b9264e36 100644
--- a/Private/Source/Utils.cxx
+++ b/Private/Source/Utils.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NewKit/Utils.hpp>
diff --git a/Private/Source/Variant.cxx b/Private/Source/Variant.cxx
index 42f59d2f..2a9fd5a0 100644
--- a/Private/Source/Variant.cxx
+++ b/Private/Source/Variant.cxx
@@ -1,11 +1,8 @@
-/*
- * ========================================================
- *
- * HCore
- * Copyright Mahrouss Logic, all rights reserved.
- *
- * ========================================================
- */
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
#include <NewKit/Variant.hpp>