📄 main.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 + -