summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author angelosa <salese_corp_ltd@email.it>2018-01-30 09:59:43 +0100
committer angelosa <salese_corp_ltd@email.it>2018-01-30 10:01:02 +0100
commit9b0453631c16e2a2049866d0cfba92ff21840406 (patch)
tree87d498b7fa3ec44ad0a4d43a77135dd2902c5a55
parent6b650385fddb4685997b6828309b97193bbf2a06 (diff)
pce.cpp: note about pachinko controller (nw)
-rw-r--r--src/mame/drivers/pce.cpp6
-rw-r--r--src/mame/drivers/photoply.cpp1
2 files changed, 6 insertions, 1 deletions
diff --git a/src/mame/drivers/pce.cpp b/src/mame/drivers/pce.cpp
index 93c711635c9..795aa1c2c0f 100644
--- a/src/mame/drivers/pce.cpp
+++ b/src/mame/drivers/pce.cpp
@@ -72,7 +72,8 @@ Super System Card:
#include "speaker.h"
-/* todo: alternate forms of input (multitap, mouse, etc.) */
+// TODO: slotify this mess, also add alternate forms of input (multitap, mouse, pachinko controller etc.)
+// hucard pachikun gives you option to select pachinko controller after pressing start, likely because it doesn't have a true header id
static INPUT_PORTS_START( pce )
PORT_START("JOY_P.0")
@@ -96,7 +97,10 @@ static INPUT_PORTS_START( pce )
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN ) PORT_PLAYER(2) PORT_CONDITION("JOY_TYPE", 0x000c, EQUALS, 0x0000)
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_PLAYER(2) PORT_CONDITION("JOY_TYPE", 0x000c, EQUALS, 0x0000)
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_PLAYER(2) PORT_CONDITION("JOY_TYPE", 0x000c, EQUALS, 0x0000)
+ // pachinko controller paddle maps here (!?) with this arrangement
+ //PORT_BIT( 0xff, 0x00, IPT_PADDLE ) PORT_MINMAX(0,0x5f) PORT_SENSITIVITY(15) PORT_KEYDELTA(15) PORT_CENTERDELTA(0) PORT_CODE_DEC(KEYCODE_N) PORT_CODE_INC(KEYCODE_M)
+
PORT_START("JOY_P.2")
/* II is left of I on the original pad so we map them in reverse order */
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_NAME("P3 Button I") PORT_PLAYER(3) PORT_CONDITION("JOY_TYPE", 0x0030, EQUALS, 0x0000)
diff --git a/src/mame/drivers/photoply.cpp b/src/mame/drivers/photoply.cpp
index d9d94597543..fa5bc44397c 100644
--- a/src/mame/drivers/photoply.cpp
+++ b/src/mame/drivers/photoply.cpp
@@ -14,6 +14,7 @@ TODO:
- PCI hookups (no idea about what this uses), and improve/device-ify SiS85C49x;
- ISA bus cards are completely guessworked;
- EEPROM (most likely at i/o 0x200);
+- Eventually needs AudioDrive ES688 / ES1688 / ES1788 & ES1868 devices and serial ports "for linking" before actually booting;
*******************************************************************************************************/