user.c
来自「lf2407自检源代码」· C语言 代码 · 共 22 行
C
22 行
/***********************************************************
* *
* Example C program for calling CHK2XX *
* *
* Written by David M. Alter *
* member technical staff *
* Texas Instruments Inc. *
* *
* Release Version 1.0 *
* *
***********************************************************/
extern unsigned chk2xx(void); /* function prototype */
unsigned errorcode; /* global variable */
void main()
{
errorcode = chk2xx();
loop: goto loop;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?