⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 utypes.h

📁 mips架构的bootloader,99左右的版本 但源代码现在没人更新了
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -