mwerks.h
来自「I wrote this code early this year using 」· C头文件 代码 · 共 29 行
H
29 行
/*
* File: defines.h
* Purpose: Define constants used by CodeWarrior Preprocessor
*
* Notes: Use this as a prefix file for the CodeWarrior assembler and compiler
*
*/
/* M5213EVB - Defines which board we are using */
#define M5213EVB
/* DEBUG = 1 turns on debug print information */
#define DEBUG 1
/* CodeWarrior 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 define constant directive to work with CodeWarrior */
#define dc.l .dc.l
/* Modify the interrupt type to work with CodeWarrior */
#define __interrupt__ __declspec(interrupt)
/* #pragma pointers_in_D0 */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?