?? console.h
字號:
/**\file console.h * Console functions. Excluded from documentation for simplicity reasons. */#ifndef CONSOLE_H#define CONSOLE_H/** Output a character to console */#define ConsolePutChar(c){while (!TI);TI = 0; SBUF = (c);}//#define DebugMessage(c){ConsoleWrite(c);}#define DebugMessage(c){}void ConsoleWrite(char code *str);void ConsolePutHex16 (unsigned int value);void ConsolePutHex8 (unsigned char value);void ConsolePutUInt(unsigned long value);//#define ConsoleWrite(a);//#define ConsolePutHex16(a);//#define ConsolePutHex8(a);//#define ConsolePutChar(a);//#define ConsolePutUInt(a);#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -