questzdoom/Projects/Android/jni/gzdoom-g3.3mgw_mobile/game-music-emu/gme/Ym2612_Emu.h
Simon 31386f35b5 Initial commit..
doesn't even build at this stage..
2020-02-22 16:10:48 +00:00

19 lines
449 B
C

// YM2612 FM sound chip emulator interface
// Game_Music_Emu https://bitbucket.org/mpyne/game-music-emu/
#ifdef VGM_YM2612_GENS // LGPL v2.1+ license
#include "Ym2612_GENS.h"
typedef Ym2612_GENS_Emu Ym2612_Emu;
#endif
#ifdef VGM_YM2612_NUKED // LGPL v2.1+ license
#include "Ym2612_Nuked.h"
typedef Ym2612_Nuked_Emu Ym2612_Emu;
#endif
#ifdef VGM_YM2612_MAME // GPL v2+ license
#include "Ym2612_MAME.h"
typedef Ym2612_MAME_Emu Ym2612_Emu;
#endif