OPN: wire up ExtCh system
This commit is contained in:
parent
f63c072517
commit
d5db7775bd
|
@ -30,6 +30,7 @@
|
||||||
#include "platform/arcade.h"
|
#include "platform/arcade.h"
|
||||||
#include "platform/tx81z.h"
|
#include "platform/tx81z.h"
|
||||||
#include "platform/ym2203.h"
|
#include "platform/ym2203.h"
|
||||||
|
#include "platform/ym2203ext.h"
|
||||||
#include "platform/ym2608.h"
|
#include "platform/ym2608.h"
|
||||||
#include "platform/ym2610.h"
|
#include "platform/ym2610.h"
|
||||||
#include "platform/ym2610ext.h"
|
#include "platform/ym2610ext.h"
|
||||||
|
@ -240,6 +241,9 @@ void DivDispatchContainer::init(DivSystem sys, DivEngine* eng, int chanCount, do
|
||||||
case DIV_SYSTEM_OPN:
|
case DIV_SYSTEM_OPN:
|
||||||
dispatch=new DivPlatformYM2203;
|
dispatch=new DivPlatformYM2203;
|
||||||
break;
|
break;
|
||||||
|
case DIV_SYSTEM_OPN_EXT:
|
||||||
|
dispatch=new DivPlatformYM2203Ext;
|
||||||
|
break;
|
||||||
case DIV_SYSTEM_PC98:
|
case DIV_SYSTEM_PC98:
|
||||||
dispatch=new DivPlatformYM2608;
|
dispatch=new DivPlatformYM2608;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue