summaryrefslogtreecommitdiffhomepage
path: root/dev/Mod/HPET
diff options
context:
space:
mode:
authorAmlal <amlal.elmahrouss@icloud.com>2025-02-20 12:32:38 +0100
committerAmlal <amlal.elmahrouss@icloud.com>2025-02-20 12:38:04 +0100
commit7d2a7e7cab23b8217498866615a3719e5d3980ee (patch)
tree75b87af3d8be10f29f2d5c69af17a9455c90df73 /dev/Mod/HPET
parentaa8a096ad429640e752d69a89c572da35493d4c0 (diff)
NeOS: Namespace change from 'Kernel' to 'NeOS'
ADD: Start defining the Workstation's HPFS (High-Performance File System) Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Mod/HPET')
-rw-r--r--dev/Mod/HPET/Defines.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/dev/Mod/HPET/Defines.h b/dev/Mod/HPET/Defines.h
index fb672410..c916703a 100644
--- a/dev/Mod/HPET/Defines.h
+++ b/dev/Mod/HPET/Defines.h
@@ -14,29 +14,29 @@
#include <NewKit/Defines.h>
#include <Mod/ACPI/ACPI.h>
-namespace Kernel
+namespace NeOS
{
struct PACKED HPETAddressStructure final
{
- Kernel::UInt8 AddressSpaceId; // 0 - system memory, 1 - system I/O
- Kernel::UInt8 RegisterBitWidth;
- Kernel::UInt8 RegisterBitOffset;
- Kernel::UInt8 Reserved;
- Kernel::UInt64 Address;
+ NeOS::UInt8 AddressSpaceId; // 0 - system memory, 1 - system I/O
+ NeOS::UInt8 RegisterBitWidth;
+ NeOS::UInt8 RegisterBitOffset;
+ NeOS::UInt8 Reserved;
+ NeOS::UInt64 Address;
};
struct PACKED HPETHeader final : public SDT
{
- Kernel::UInt8 HardwareRevId;
- Kernel::UInt8 ComparatorCount : 5;
- Kernel::UInt8 CounterSize : 1;
- Kernel::UInt8 Reserved : 1;
- Kernel::UInt8 LegacyReplacement : 1;
- Kernel::UInt16 PciVendorId;
+ NeOS::UInt8 HardwareRevId;
+ NeOS::UInt8 ComparatorCount : 5;
+ NeOS::UInt8 CounterSize : 1;
+ NeOS::UInt8 Reserved : 1;
+ NeOS::UInt8 LegacyReplacement : 1;
+ NeOS::UInt16 PciVendorId;
HPETAddressStructure Address;
- Kernel::UInt8 HpetNumber;
- Kernel::UInt16 MinimumTick;
- Kernel::UInt8 PageProtection;
+ NeOS::UInt8 HpetNumber;
+ NeOS::UInt16 MinimumTick;
+ NeOS::UInt8 PageProtection;
};
-} // namespace Kernel
+} // namespace NeOS