?? start.c
字號:
#include "stddefs.h"#include "monlib.h"extern void main();void__main(void){}voidstart(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));}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -