summaryrefslogtreecommitdiffhomepage
path: root/Kernel/HALKit/ARM64/Storage
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/HALKit/ARM64/Storage')
-rw-r--r--Kernel/HALKit/ARM64/Storage/Flash.cxx27
1 files changed, 27 insertions, 0 deletions
diff --git a/Kernel/HALKit/ARM64/Storage/Flash.cxx b/Kernel/HALKit/ARM64/Storage/Flash.cxx
new file mode 100644
index 00000000..8afd0f58
--- /dev/null
+++ b/Kernel/HALKit/ARM64/Storage/Flash.cxx
@@ -0,0 +1,27 @@
+/* -------------------------------------------
+
+ Copyright Zeta Electronics Corporation
+
+------------------------------------------- */
+
+#include <NewKit/Defines.hpp>
+#include <ArchKit/ArchKit.hpp>
+
+/// @brief MBCI flash drive.
+
+#ifdef __FLASH_MEM__
+
+namespace NewOS
+{
+ SizeT drv_std_get_sector_count(void)
+ {
+ return 0;
+ }
+
+ SizeT drv_std_get_drv_size(void)
+ {
+ return 0;
+ }
+} // namespace NewOS
+
+#endif // if __FLASH_MEM__ (MBCI)