main.c

来自「IAR 开发环境的Cirrus Logic的例程」· C语言 代码 · 共 31 行

C
31
字号
//****************************************************************************
//
// MAIN.C - Wrapper for the actual program that supplies the Angel required
//          "main" routine
//
// Copyright (c) 1998 Cirrus Logic, Inc.
//
//****************************************************************************

//****************************************************************************
//
// entry is the routine which contains the actual program to be executed.
//
//****************************************************************************
#ifdef __IAR_SYSTEMS_ICC__
extern void entry(void);
#else
extern int entry(void);
#endif

//****************************************************************************
//
// Simply call the actual program from main.
//
//****************************************************************************
int
main(void)
{
    entry();
}

⌨️ 快捷键说明

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