lego-esp32s3-gameboy/components/gnuboy/include/gnuboy.h

25 lines
290 B
C

/**
* @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