?? console.h
字號:
/*
*2006/08/16 WXL 2.0
*
*/
/*
V0.2 added PC-based binding 21/July/2006
V0.1 Initial Release 10/July/2006
*/
#ifndef CONSOLE_H
#define CONSOLE_H
#include "compiler.h"
void conPrintROMString_func(ROMCHAR *s);
void conPrintUINT8 (UINT8 x);
void conPrintUINT16 (UINT16 x);
void conPrintUINT32 (UINT32 x);
void conPrintLADDR(LADDR *laddr); //print long address
void conPrintLADDR_bytes(BYTE *ptr); //print long address
void conPrintConfig(void);
void conPCRLF(void);
void conPrintString (char *s);
void LcdPrintUINT8_noleader(UINT8 x,UINT8 i,UINT8 j);
void LcdPrintUINT8(UINT8 x,UINT8 i,UINT8 j);
void LcdPrintUINT16(UINT16 x,UINT8 i,UINT8 j);
void LcdPrintUINT32(UINT32 x, UINT8 i, UINT8 j);
void LcdPrintLADDR_bytes(BYTE *ptr, UINT8 i, UINT8 j);
void LcdPrintLADDR(LADDR *laddr, UINT8 i, UINT8 j);
//strings passed into this macro must be ROM constants
#define conPrintROMString(s) \
{\
static ROMCHAR xxxxromstr[] = s;\
conPrintROMString_func(xxxxromstr);\
}
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -