diff options
-rw-r--r-- | src/mame/drivers/rfslots8085.cpp | 7 |
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 ) |