Alex Duchesne becfd407b5 retro-core: removed the shared rg_app_t pointer, it caused a naming conflict with a lib I'm adding
No real downside here, the pointer wasn't used often and its value is static.
2024-12-03 15:42:11 -05:00

20 lines
371 B
C

#include <stddef.h>
#include <stdint.h>
#include <string.h>
#include <rg_system.h>
#define AUDIO_SAMPLE_RATE (32000)
#define AUDIO_BUFFER_LENGTH (AUDIO_SAMPLE_RATE / 50 + 1)
extern uint8_t shared_memory_block_64K[0x10000];
void launcher_main();
void gbc_main();
void nes_main();
void pce_main();
void sms_main();
void gw_main();
void lynx_main();
void snes_main();