📄 timer.h
字号:
/***************************************** Copyright (c) 2002-2004 Sigma Designs, Inc. All Rights Reserved Proprietary and Confidential *****************************************//* This file is part of the EM86XX boot loader */#ifndef __BOOTLOADER_TIMER_H#define __BOOTLOADER_TIMER_H#include "em86xxapi.h"#define delay(usec) em86xx_usleep(usec)// // function ptototypes//void em86xx_setup_timer(void);unsigned int timer_getticks(void);int timer_timeout(unsigned int startticks, int timeout);#ifdef ENABLE_FIQ_TESTunsigned int timer_getticks1(void);#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -