add AY8930 platform
This commit is contained in:
parent
b26208f2c1
commit
dce06d8ec4
12 changed files with 530 additions and 17 deletions
|
|
@ -10,6 +10,7 @@
|
|||
#include "platform/ym2610.h"
|
||||
#include "platform/ym2610ext.h"
|
||||
#include "platform/ay.h"
|
||||
#include "platform/ay8930.h"
|
||||
#include "platform/dummy.h"
|
||||
#include "../ta-log.h"
|
||||
|
||||
|
|
@ -116,6 +117,9 @@ void DivDispatchContainer::init(DivSystem sys, DivEngine* eng, int chanCount, do
|
|||
case DIV_SYSTEM_AY8910:
|
||||
dispatch=new DivPlatformAY8910;
|
||||
break;
|
||||
case DIV_SYSTEM_AY8930:
|
||||
dispatch=new DivPlatformAY8930;
|
||||
break;
|
||||
default:
|
||||
logW("this system is not supported yet! using dummy platform.\n");
|
||||
dispatch=new DivPlatformDummy;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue