📄 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 + -