完整的Bell实验室的嵌入式文件系统TFS

源代码在线查看: start.c

软件大小: 3586 K
上传用户: smellteen
关键词: Bell TFS 实验室 嵌入式文件系统
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include "stddefs.h"				#include "monlib.h"								extern void main();								void				__main(void)				{				}								void				start(void)				{				    char    **argv;				    int     argc;								    /* Connect the application to the monitor.  This must be done */				    /* prior to the application making any other attempts to use the "mon_" */				    /* functions provided by the monitor. */				    monConnect((int(*)())(*(unsigned long *)0xffe00008),(void *)0,(void *)0);								    /* Extract argc/argv from structure and call main(): */				    mon_getargv(&argc,&argv);								    /* Call main, then return to monitor. */				    return(main(argc,argv));				}							

相关资源