summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author ClawGrip <clawgrip@hotmail.com>2021-04-20 20:19:12 +0200
committer GitHub <noreply@github.com>2021-04-20 14:19:12 -0400
commit9484211f22d594cdb3ddce40f0376e78be018655 (patch)
treeaca7a1357566fa65d9d5bee0612b5ac7646bfdbf
parente1bd766620fd8abc0662bc705901f1177a6472b4 (diff)
rfslots8085.cpp: The PCB only has 6 dipswitches (#7983)
* rfslots8085.cpp: The PCB only has 6 dipswitches * Add anonymous namespace
-rw-r--r--src/mame/drivers/rfslots8085.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/drivers/rfslots8085.cpp b/src/mame/drivers/rfslots8085.cpp
index 94eae5ecc82..c5cfa538d00 100644
--- a/src/mame/drivers/rfslots8085.cpp
+++ b/src/mame/drivers/rfslots8085.cpp
@@ -38,6 +38,9 @@ Recreativos Franco used this hardware from 1987 to 1992 on several machines, inc
#include "sound/ay8910.h"
#include "speaker.h"
+namespace
+{
+
class rfslots8085_state : public driver_device
{
public:
@@ -89,8 +92,6 @@ void rfslots8085_state::sound_io_map(address_map &map)
static INPUT_PORTS_START(unkrfslt)
PORT_START("DSW") // 1 x 6-dips bank
- PORT_BIT(0x80, 0x80, IPT_UNKNOWN)
- PORT_BIT(0x40, 0x40, IPT_UNKNOWN)
PORT_BIT(0x20, 0x20, IPT_UNKNOWN)
PORT_BIT(0x10, 0x10, IPT_UNKNOWN)
PORT_BIT(0x08, 0x08, IPT_UNKNOWN)
@@ -184,5 +185,7 @@ ROM_START(unkrfslt)
ROM_IGNORE( 0x3000 ) // 0xff filled and it's outside of the 8035's global address mask (fff)
ROM_END
+} // anonymous namespace
+
// Date "25-05-87" engraved on the PCB
GAME( 1987?, unkrfslt, 0, unkrfslt, unkrfslt, rfslots8085_state, empty_init, ROT0, "Recreativos Franco", "unknown Recreativos Franco slot machine", MACHINE_IS_SKELETON_MECHANICAL )