?? appconfig.c
字號:
/*****************************************************************************
*
* Motorola Inc.
* (c) Copyright 2000 Motorola, Inc.
* ALL RIGHTS RESERVED.
*
******************************************************************************
*
* File Name: appconfig.c
*
* Description: file for user configured routines outside of Main() scope
* (additional configuration ...)
*
* Modules Included:
*
*****************************************************************************/
#include "types.h"
#include "arch.h"
void userPreMain(void);
void userPostMain(void);
/*****************************************************************************/
void userPreMain(void)
{
}
/*****************************************************************************/
void userPostMain(void)
{
/* End of debugging session */
asm(debug);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -