?? mwerks.h
字號:
/*
* 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -