📄 debug.h
字号:
/**************************************************************************************
*
* (c) 2004 ASIC,all rights reserved
*
*
*This source code and any compilation or derivative thereof
*is proprietary information and is confidential in nature.
*Under no circumstance is this software to be exposed or placed
*under an open source License of any type without expressed
*written permission of ASIC.
*
*filename: debug.h
*history:
*
* Version Date Author Comments
*------------------------------------------------------------------------------------
* 1.1 2004.5.18 xl Initial Creation
*
**************************************************************************************/
#define OS_LIB_DEBUG
#ifndef NUM_RAMDISK_PAGES
#define NUM_RAMDISK_PAGES 1280
#endif
#ifndef RAMDISK_PAGE_SIZE
#define RAMDISK_PAGE_SIZE 8
#endif
#ifndef _INT_TYPE_
#define _INT_TYPE_
typedef int INT; /* Signed integer (bit width of processor) */
#endif
typedef char INT8; /* 1 1 */
typedef unsigned char UINT8; /* 1 1 */
typedef signed short INT16; /* 2 2 */
typedef unsigned short UINT16; /* 2 2 */
typedef unsigned long UINT32;
#ifndef NULL
#define NULL ((void *)0)
#endif
#ifndef NO
#define NO 0
#endif
#ifndef YES
#define YES 1
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -