initial MMC5 bring-up
This commit is contained in:
parent
280cbb3e39
commit
2da96a7e76
9 changed files with 707 additions and 11 deletions
|
|
@ -51,6 +51,7 @@
|
|||
#include "platform/vic20.h"
|
||||
#include "platform/vrc6.h"
|
||||
#include "platform/fds.h"
|
||||
#include "platform/mmc5.h"
|
||||
#include "platform/dummy.h"
|
||||
#include "../ta-log.h"
|
||||
#include "song.h"
|
||||
|
|
@ -295,6 +296,9 @@ void DivDispatchContainer::init(DivSystem sys, DivEngine* eng, int chanCount, do
|
|||
case DIV_SYSTEM_VRC6:
|
||||
dispatch=new DivPlatformVRC6;
|
||||
break;
|
||||
case DIV_SYSTEM_MMC5:
|
||||
dispatch=new DivPlatformMMC5;
|
||||
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