1
0
mirror of https://github.com/jscrane/r65emu.git synced 2024-05-29 03:41:36 +00:00
r65emu/timed.h

9 lines
136 B
C
Raw Normal View History

2014-11-13 19:20:01 +00:00
#ifndef __TIMED_H__
#define __TIMED_H__
2018-11-11 11:21:12 +00:00
typedef void (*handler_t)(void);
void timer_create(unsigned freq, handler_t handler);
2014-11-13 19:20:01 +00:00
#endif