URL
https://opencores.org/ocsvn/usb_device_core/usb_device_core/trunk
Subversion Repositories usb_device_core
[/] [usb_device_core/] [trunk/] [sw/] [timer.h] - Rev 5
Compare with Previous | Blame | View Log
#ifndef __TIMER_H__ #define __TIMER_H__ //----------------------------------------------------------------- // Types //----------------------------------------------------------------- typedef unsigned long t_time; // TODO: Implementation specific millisecond timer... static t_time timer_now(void) { return 0; } static void timer_sleep(int timeMs) { } #endif