prepare for PC Engine platform
using Mednafen core
This commit is contained in:
parent
0b8fcc6e8d
commit
d74fa698af
8 changed files with 1349 additions and 1 deletions
|
|
@ -6,6 +6,7 @@
|
|||
#include "platform/genesisext.h"
|
||||
#include "platform/sms.h"
|
||||
#include "platform/gb.h"
|
||||
#include "platform/pce.h"
|
||||
#include "platform/dummy.h"
|
||||
#include <math.h>
|
||||
#include <zlib.h>
|
||||
|
|
@ -709,6 +710,9 @@ bool DivEngine::init() {
|
|||
case DIV_SYSTEM_GB:
|
||||
dispatch=new DivPlatformGB;
|
||||
break;
|
||||
case DIV_SYSTEM_PCE:
|
||||
dispatch=new DivPlatformPCE;
|
||||
break;
|
||||
default:
|
||||
dispatch=new DivPlatformDummy;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue