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

📄 relocate_io.h

📁 motorola自己开发的针对coldfire 5272的Dbug bootloader程序
💻 H
字号:
/*
 * File:		relocate_io.h
 * Purpose:		Prototypes for common relocatable input/output routines
 *
 * Notes:
 *
 */

#ifndef _RELOCATE_IO_H
#define _RELOCATE_IO_H

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

/* 
 * Compiler specific code relocation section 
 */
#ifdef __DCC__
#pragma section CODE	".code_relocation"
#pragma section CONST	".code_relocation"
#endif

void 
relocate_putchar (char);

char 
relocate_getchar (void);

int  
relocate_getchar_present (void);

/* 
 * Return to standard sections
 */
#ifdef __DCC__
#pragma section CODE
#pragma section CONST
#endif

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

#endif /* _RELOCATE_IO_H */

⌨️ 快捷键说明

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