relocate_io.h

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

H
42
字号
/*
 * 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 + =
减小字号Ctrl + -
显示快捷键?