uif.h

来自「motorola自己开发的针对coldfire 5272的Dbug bootlo」· C头文件 代码 · 共 43 行

H
43
字号
/*
 * File:		uif.h
 * Purpose:		Private definitions and prototypes for dBUG.
 *
 * Notes:
 *
 */

#ifndef _UIF_H
#define _UIF_H

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

/* Include information and prototypes for other portions of dBUG */
#include "src/uif/bkpt.h"
#include "src/uif/sym.h"
#include "src/uif/cpu.h"
#include "src/uif/isr.h"

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

/* Maximum number of software breakpoints */
#ifndef UIF_MAX_BRKPTS
#define UIF_MAX_BRKPTS  (10)
#endif

/* Maxinum number of symbol table entries */
#ifndef UIF_MAX_SYMBOL
#define UIF_MAX_SYMBOL  (250)
#endif

/* Maximum number of ISR entries */
#ifndef UIF_MAX_ISR_ENTRY
#define UIF_MAX_ISR_ENTRY	(10)
#endif

int
main (void);

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

#endif	/* _UIF_H */

⌨️ 快捷键说明

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