18 lines
370 B
C
18 lines
370 B
C
/**
|
|
* @file gnuboy_placeholder.c
|
|
* @brief GNUBoy emulator core - Placeholder
|
|
*
|
|
* This is a placeholder file. The actual GNUBoy core will be added later.
|
|
* For now, this ensures the component compiles.
|
|
*/
|
|
|
|
#include "gnuboy.h"
|
|
|
|
void gnuboy_init(void) {
|
|
// TODO: Initialize GNUBoy emulator
|
|
}
|
|
|
|
void gnuboy_run_frame(void) {
|
|
// TODO: Run one emulation frame
|
|
}
|