mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-23 22:52:34 +01: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 */
|