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