added PC Engine/TurboGrafx-16 support (PCE)
This commit is contained in:
parent
6a7722648e
commit
9f2af4666a
10 changed files with 70 additions and 3 deletions
|
|
@ -28,6 +28,7 @@
|
|||
#include "overrides/gambatte.h"
|
||||
#include "overrides/gpsp.h"
|
||||
#include "overrides/mgba.h"
|
||||
#include "overrides/mednafen_pce_fast.h"
|
||||
#include "overrides/mednafen_vb.h"
|
||||
#include "overrides/mednafen_supafaust.h"
|
||||
#include "overrides/pcsx_rearmed.h"
|
||||
|
|
@ -40,6 +41,7 @@ static CoreOverrides* overrides[] = {
|
|||
&fceumm_overrides,
|
||||
&gambatte_overrides,
|
||||
&gpsp_overrides,
|
||||
&mednafen_pce_fast_overrides,
|
||||
&mednafen_supafaust_overrides,
|
||||
&mednafen_vb_overrides,
|
||||
&mgba_overrides,
|
||||
|
|
|
|||
22
src/minarch/overrides/mednafen_pce_fast.h
Normal file
22
src/minarch/overrides/mednafen_pce_fast.h
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#include "overrides.h"
|
||||
|
||||
static CoreOverrides mednafen_pce_fast_overrides = {
|
||||
.core_name = "mednafen_pce_fast",
|
||||
.button_mapping = (ButtonMapping[]){
|
||||
{"Up", RETRO_DEVICE_ID_JOYPAD_UP, BTN_ID_UP},
|
||||
{"Down", RETRO_DEVICE_ID_JOYPAD_DOWN, BTN_ID_DOWN},
|
||||
{"Left", RETRO_DEVICE_ID_JOYPAD_LEFT, BTN_ID_LEFT},
|
||||
{"Right", RETRO_DEVICE_ID_JOYPAD_RIGHT, BTN_ID_RIGHT},
|
||||
{"Select", RETRO_DEVICE_ID_JOYPAD_SELECT, BTN_ID_SELECT},
|
||||
{"Run", RETRO_DEVICE_ID_JOYPAD_START, BTN_ID_START},
|
||||
{"I", RETRO_DEVICE_ID_JOYPAD_A, BTN_ID_A},
|
||||
{"II", RETRO_DEVICE_ID_JOYPAD_B, BTN_ID_B},
|
||||
{"III", RETRO_DEVICE_ID_JOYPAD_Y, BTN_ID_Y},
|
||||
{"IV", RETRO_DEVICE_ID_JOYPAD_X, BTN_ID_X},
|
||||
{"V", RETRO_DEVICE_ID_JOYPAD_L, BTN_ID_L1},
|
||||
{"VI", RETRO_DEVICE_ID_JOYPAD_R, BTN_ID_R1},
|
||||
{"Mode", RETRO_DEVICE_ID_JOYPAD_L2, BTN_ID_L2},
|
||||
{NULL},
|
||||
},
|
||||
};
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue