summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/psx.c
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2013-05-29 13:52:16 +0000
committer smf- <smf-@users.noreply.github.com>2013-05-29 13:52:16 +0000
commit459b30be0f931ce0d9b26d929b4bd40608188fc5 (patch)
treeeb75898a8d5a186c8d89c2a69bb52c5344402b8f /src/mess/drivers/psx.c
parentf3c89aced23e12140b915172d38d8e841f0ae378 (diff)
Moved default card config, device inputs and clock off the slot interface so they can be specified for all cards [smf]
Diffstat (limited to 'src/mess/drivers/psx.c')
-rw-r--r--src/mess/drivers/psx.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/drivers/psx.c b/src/mess/drivers/psx.c
index 3d69667ec68..2f6615cdd9e 100644
--- a/src/mess/drivers/psx.c
+++ b/src/mess/drivers/psx.c
@@ -496,8 +496,8 @@ static MACHINE_CONFIG_START( psxntsc, psx1_state )
MCFG_RAM_DEFAULT_SIZE("2M")
MCFG_DEVICE_ADD("maincpu:sio0:controllers", PSXCONTROLLERPORTS, 0)
- MCFG_PSX_CTRL_PORT_ADD("port1", psx_controllers, "digital_pad", NULL)
- MCFG_PSX_CTRL_PORT_ADD("port2", psx_controllers, "digital_pad", NULL)
+ MCFG_PSX_CTRL_PORT_ADD("port1", psx_controllers, "digital_pad")
+ MCFG_PSX_CTRL_PORT_ADD("port2", psx_controllers, "digital_pad")
/* video hardware */
MCFG_PSXGPU_ADD( "maincpu", "gpu", CXD8561Q, 0x100000, XTAL_53_693175MHz )
@@ -532,8 +532,8 @@ static MACHINE_CONFIG_START( psxpal, psx1_state )
MCFG_RAM_DEFAULT_SIZE("2M")
MCFG_DEVICE_ADD("maincpu:sio0:controllers", PSXCONTROLLERPORTS, 0)
- MCFG_PSX_CTRL_PORT_ADD("port1", psx_controllers, "digital_pad", NULL)
- MCFG_PSX_CTRL_PORT_ADD("port2", psx_controllers, "digital_pad", NULL)
+ MCFG_PSX_CTRL_PORT_ADD("port1", psx_controllers, "digital_pad")
+ MCFG_PSX_CTRL_PORT_ADD("port2", psx_controllers, "digital_pad")
/* video hardware */
/* TODO: visible area and refresh rate */