1
0
mirror of https://github.com/mist-devel/mist-firmware.git synced 2026-05-02 14:40:58 +00:00

snes.c: detect SNES ROM type

Need a small core change, too
This commit is contained in:
Gyorgy Szombathelyi
2024-09-21 22:44:33 +02:00
parent 5541297e77
commit 2102ac4431
6 changed files with 208 additions and 3 deletions

View File

@@ -161,6 +161,13 @@
#define psx_debugf(...)
#endif
#if 0
// SNES debug output
#define snes_debugf(a, ...) iprintf("\033[1;34mSNES : " a "\033[0m\n",## __VA_ARGS__)
#else
#define snes_debugf(...)
#endif
#if 1
// HDMI debug output
#define hdmi_debugf(a, ...) iprintf("\033[1;34mHDMI : " a "\033[0m",## __VA_ARGS__)