⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.c

📁 Cirrus Logic EP7312处理器部分控制程序。
💻 C
字号:
//****************************************************************************
//
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -