|
/**
|
|
* @file gnuboy.h
|
|
* @brief GNUBoy emulator API
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief Initialize GNUBoy emulator
|
|
*/
|
|
void gnuboy_init(void);
|
|
|
|
/**
|
|
* @brief Run one emulation frame (60 FPS)
|
|
*/
|
|
void gnuboy_run_frame(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|