gzdoom-gles/libraries/game-music-emu/gme/Ym2612_Emu.h

20 lines
449 B
C
Raw Normal View History

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