types.h
来自「skyeye是一个可以模拟嵌入式硬件开发板的系统软件」· C头文件 代码 · 共 39 行
H
39 行
#ifndef __TYPES_H__#define __TYPES_H__#include <stdint.h>#define uint64 uint64_t#define sint64 int64_t#define uint32 uint32_t#define sint32 int32_t#define uint16 uint16_t#define sint16 int16_t#define uint8 uint8_t#define sint8 int8_t#define byte int8_t#define uint uint32_ttypedef struct uint128 { uint64 l; uint64 h;} uint128;typedef struct sint128 { sint64 l; sint64 h;} sint128;#define FASTCALL typedef enum{ false = 0, true = 1}bool;#define IO_MEM_ACCESS_OK 0#define IO_MEM_ACCESS_EXC 1#define IO_MEM_ACCESS_FATAL 2#define FUNCTION_CONST const#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?