6 Star 4 Fork 3

ZhouHeyu/simulation

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
type.h 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
ZhouHeyu 提交于 2020-08-16 17:52 . Description:flash接口整理
/*
* @Copyright:
* @Description:
* @Author: zhoujie
* @Date: 2020-08-14 23:08:07
* @LastEditors: zhoujie
* @LastEditTime: 2020-08-16 12:53:22
*/
#ifndef TYPES
#define TYPES
#include <stdio.h>
#include <stdint.h>
#include <assert.h>
#define ASSERT(expr) assert(expr)
#define EXIT(expr) ASSERT(0)
#define ERROR -1
#define SUCCESS 0
#define TRUE 0
#define FALSE 1
typedef int_least16_t _s16;
typedef int_least32_t _s32;
typedef uint_least8_t _u8;
typedef uint_least16_t _u16;
typedef uint_least32_t _u32;
typedef uint_least32_t U32;
typedef uint_least16_t U16;
typedef uint_least8_t U08;
typedef int_least16_t S16;
typedef int_least32_t S32;
typedef uint_fast32_t sect_t;
typedef uint_fast32_t blk_t;
struct ftl_operation {
int (*init) (blk_t blk_num, blk_t extra_num);
size_t (*read) (sect_t lsn, size_t size, int map_flag);
size_t (*write)(sect_t lsn, size_t size, int map_flag);
void (*end) ();
};
//加入自己的cache_type类型的函数指针结构
struct cache_operation{
int (*init) (int size,int blk_num);
int (*SearchCache)(int LPN,int operation);
int (*HitCache)(int LPN, int operation,int index);
double (*AddCacheEntry)(int LPN,int operation);
double (*DelCacheEntry)(int LPN,int operation);
void (*end) ();
};
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/ZhouHeyu/simulation.git
git@gitee.com:ZhouHeyu/simulation.git
ZhouHeyu
simulation
simulation
master

搜索帮助