blob: 992c945b0a632a87aaccd869abda93da63435215 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* -------------------------------------------
Copyright (C) 2024-2025, Amlal EL Mahrouss, all rights reserved.
------------------------------------------- */
#pragma once
#ifdef NE_USE_MBCI_FLASH
#include <NewKit/Defines.h>
Kernel::SizeT drv_get_sector_count(Kernel::Int32 slot);
Kernel::SizeT drv_get_size(Kernel::Int32 slot);
Kernel::Void drv_enable_at(Kernel::Int32 slot);
Kernel::Void drv_disable_at(Kernel::Int32 slot);
#endif // ifdef NE_USE_MBCI_FLASH
|