mirror of
https://github.com/libretro/sameduck.git
synced 2024-12-02 15:07:13 +00:00
8 lines
169 B
C
8 lines
169 B
C
#ifndef timing_h
|
|
#define timing_h
|
|
#include "gb.h"
|
|
|
|
void advance_cycles(GB_gameboy_t *gb, unsigned char cycles);
|
|
void timers_run(GB_gameboy_t *gb);
|
|
#endif /* timing_h */
|