1
0
mirror of https://github.com/jscrane/r65emu.git synced 2024-06-01 22:41:30 +00:00
r65emu/timed.h
2018-11-11 11:21:12 +00:00

9 lines
136 B
C

#ifndef __TIMED_H__
#define __TIMED_H__
typedef void (*handler_t)(void);
void timer_create(unsigned freq, handler_t handler);
#endif