mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-23 22:52:34 +01:00
9 lines
204 B
C
9 lines
204 B
C
#ifndef timing_h
|
|
#define timing_h
|
|
#include "gb.h"
|
|
|
|
void GB_advance_cycles(GB_gameboy_t *gb, uint8_t cycles);
|
|
void GB_timers_run(GB_gameboy_t *gb);
|
|
void GB_rtc_run(GB_gameboy_t *gb);
|
|
#endif /* timing_h */
|