blob: b057681f5beb24a4fa7965e2ac551b820f1700c9 (
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, t& Corporation, all rights reserved.
------------------------------------------- */
#pragma once
#ifdef ZKA_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 ZKA_USE_MBCI_FLASH
|