cstart.p96

来自「c96/196 编译开发环境,可以通过此环境进行 96、196的相关单片机C编」· P96 代码 · 共 28 行

P96
28
字号
/************************************************************************/
/*                                                                      */
/*              Intel Corporation Proprietary Information               */
/*                                                                      */
/*       This  source  is  supplied  under  the  terms  of  a  license  */
/*  agreement or  non-dislosure statement  with the  Intel Corporation  */
/*  and may not be copied nor disclosed except in accordance with  the  */
/*  terms of that agreement.                                            */
/*                                                                      */
/************************************************************************/
/*									*/
/*	This source file is a sample start-up code. This code can be	*/
/*  tailored differently according to the needs of the user, and the	*/
/*  environment under which the application will run.			*/
/*									*/
/************************************************************************/
cstart: do;

/************************************************************************/
/*  Declaration of the main() procedure                                 */
/************************************************************************/
main: procedure external;
end;

	call main;     /* Call the main() procedure  */

end cstart;

⌨️ 快捷键说明

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