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

📄 bootloadlib.h

📁 (1)本人基于MPC860的vxworks bsp的程序 (2)实现了FEC 100M和 SCC 10M的网口功能 (3)实现了nor flash的TFFS文件系统 (4)实现了系统的自检 (
💻 H
字号:
/* bootLoadLib.h - object module boot loader library header *//* Copyright 1984-1992 Wind River Systems, Inc. *//*modification history--------------------01d,22sep92,rrr  added support for c++01c,04jul92,jcf  cleaned up.01b,23jun92,ajm  fixed function prototype for bootLoadModule01a,01jun92,ajm  written*/#ifndef __INCbootLoadLibh#define __INCbootLoadLibh#ifdef __cplusplusextern "C" {#endif#include "vwModNum.h"#include "symLib.h"/* status codes */#define S_bootLoadLib_ROUTINE_NOT_INSTALLED		(M_bootLoadLib | 1)/* data structures */extern FUNCPTR bootLoadRoutine;/* function declarations */#if defined(__STDC__) || defined(__cplusplus)extern STATUS 	bootLoadModule (int fd, FUNCPTR *pEntry);#else	/* __STDC__ */extern STATUS 	bootLoadModule ();#endif	/* __STDC__ */#ifdef __cplusplus}#endif#endif /* __INCbootLoadLibh */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -