📄 apbmst.h
字号:
#ifndef APBMST_H
#define APBMST_H
#define APBMST_MAXSLAVE 2
typedef int (* apb_write)();
typedef int (* apb_read)();
typedef struct _apb_slave {
apb_write write;
apb_read read;
unsigned int start, end;
void *c;
} apb_slave;
typedef struct _apbmst {
apb_slave slaves[APBMST_MAXSLAVE];
} apbmst;
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -