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

📄 uif.h

📁 motorola自己开发的针对coldfire 5272的Dbug bootloader程序
💻 H
字号:
/*
 * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -