mwerks.h

来自「COLDFIRE 5282SC的文件」· C头文件 代码 · 共 21 行

H
21
字号
/*
 * File:	mwerks.h
 * Purpose:	Define constants used by CodeWarrior Preprocessor
 *
 * Notes:	Use this as a prefix file for the assembler and compiler
 *
 */

/* MetroWerks looks for an underscore prepended to C function names */
#define _UNDERSCORE_

/* Define a constant to inform files we are using CodeWarrior */
#ifndef __MWERKS__
#define __MWERKS__
#endif

/* Modify the interrupt type to work with CodeWarrior */
#define __interrupt__	__declspec(interrupt)

/* Force functions to return values in D0 */
#pragma pointers_in_D0

⌨️ 快捷键说明

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