evbcmds.c

来自「Coldfire MCF5282 DBug bootloader」· C语言 代码 · 共 44 行

C
44
字号
/*
 * File:		cmds.c
 * Purpose:		dBUG command set
 *
 * Notes:
 *
 * Modifications:
 *
 */

#include "src/include/dbug.h"

/********************************************************************/

/* Put prototypes to project specific commands here */

/********************************************************************/

/*
 * dBUG commands
 */
UIF_CMD UIF_CMDTAB[] =
{
	UIF_CMDS_ALL
	CPU_CMDS_ALL
	/* Put project specific dBUG commands here */
} ;
const int UIF_NUM_CMD = UIF_CMDTAB_SIZE;

/********************************************************************/

/*
 * dBUG SET/SHOW commands
 */
UIF_SETCMD UIF_SETCMDTAB[] =
{
	UIF_SETCMDS_ALL
	CPU_SETCMDS_ALL
	/* Put project specific set/show commands here */
} ;
const int UIF_NUM_SETCMD = UIF_SETCMDTAB_SIZE;

/********************************************************************/

⌨️ 快捷键说明

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