utypes.h
来自「mips架构的bootloader,99左右的版本 但源代码现在没人更新了」· C头文件 代码 · 共 20 行
H
20 行
#ifndef _UTYPES_H_#define _UTYPES_H_typedef unsigned long Ulong;typedef unsigned short Ushort;typedef unsigned char Uchar;typedef unsigned long RegVal; /* register value (32 bits) */#define REGVALMAX 0typedef RegVal RvFunc(); /* Func that returns a RegVal */typedef int Func(); /* Func that returns an int */typedef Ulong lFunc(); /* Func that returns a Ulong */typedef void vFunc(); /* Func that returns a void */typedef Func *fFunc(); /* Func that returns a ptr to a Func */typedef void *vpFunc(); /* Func that returns a ptr to a void */typedef int *Addr;#endif /* _UTYPES_H_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?