diff options
Diffstat (limited to 'dev/ZKAKit/StorageKit/StorageKit.h')
| -rw-r--r-- | dev/ZKAKit/StorageKit/StorageKit.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/dev/ZKAKit/StorageKit/StorageKit.h b/dev/ZKAKit/StorageKit/StorageKit.h new file mode 100644 index 00000000..4b8b2411 --- /dev/null +++ b/dev/ZKAKit/StorageKit/StorageKit.h @@ -0,0 +1,22 @@ +/* ------------------------------------------- + + Copyright (C) 2024, EL Mahrouss Logic, all rights reserved. + +------------------------------------------- */ + +#pragma once + +#define kDriveSectorSizeHDD (512U) +#define kDriveSectorSizeSSD (512U) +#define kDriveSectorSizeOptical (2048) + +namespace Kernel +{ + template <typename T> + class DeviceInterface; + + class NVMEDeviceInterface; + class AHCIDeviceInterface; + class ATADeviceInterface; + class SCSIDeviceInterface; +} // namespace Kernel |
