main.c
来自「Cirrus Logic EP7312处理器部分控制程序。」· C语言 代码 · 共 27 行
C
27 行
//****************************************************************************
//
// 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.
//
//****************************************************************************
extern int entry(void);
//****************************************************************************
//
// Simply call the actual program from main.
//
//****************************************************************************
int __main(void)
{
entry();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?