summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author ClawGrip <clawgrip@hotmail.com>2020-12-25 04:42:18 +0100
committer GitHub <noreply@github.com>2020-12-25 14:42:18 +1100
commit5e153f7bac63ba29074d6e7782195bbdaa409049 (patch)
tree6470e878cfdf3daa268eb2147b51aa2be7216810
parentc49f1ee406ca614172aa6a2485197496fa86f38d (diff)
New machines marked as NOT_WORKING (#7591)
---------------------------------- RF51W14-CG [jordigahan, ClawGrip]
-rw-r--r--scripts/target/mame/arcade.lua1
-rw-r--r--src/mame/arcade.flt1
-rw-r--r--src/mame/drivers/rf51w14cg.cpp138
-rw-r--r--src/mame/mame.lst3
4 files changed, 143 insertions, 0 deletions
diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua
index d8dcff07668..0aa80b57ff0 100644
--- a/scripts/target/mame/arcade.lua
+++ b/scripts/target/mame/arcade.lua
@@ -5052,6 +5052,7 @@ files {
MAME_DIR .. "src/mame/drivers/rbmk.cpp",
MAME_DIR .. "src/mame/drivers/rcorsair.cpp",
MAME_DIR .. "src/mame/drivers/re900.cpp",
+ MAME_DIR .. "src/mame/drivers/rf51w14cg.cpp",
MAME_DIR .. "src/mame/drivers/rfslots8085.cpp",
MAME_DIR .. "src/mame/drivers/rfslotspcpent.cpp",
MAME_DIR .. "src/mame/drivers/rgum.cpp",
diff --git a/src/mame/arcade.flt b/src/mame/arcade.flt
index 4c02a09d281..4dfbfb42b48 100644
--- a/src/mame/arcade.flt
+++ b/src/mame/arcade.flt
@@ -1028,6 +1028,7 @@ regama.cpp
relief.cpp
renegade.cpp
retofinv.cpp
+rf51w14cg.cpp
rfslots8085.cpp
rfslotspcpent.cpp
rgum.cpp
diff --git a/src/mame/drivers/rf51w14cg.cpp b/src/mame/drivers/rf51w14cg.cpp
new file mode 100644
index 00000000000..37da20cacf3
--- /dev/null
+++ b/src/mame/drivers/rf51w14cg.cpp
@@ -0,0 +1,138 @@
+// license:BSD-3-Clause
+// copyright-holders:
+/******************************************************************************
+
+ Skeleton driver for Recreativos Franco "RF51W14-CG".
+ "RF51W14-CG" is the legal registry name, the game commercial name is unknown.
+
+ TODO:
+ - Everything
+
+ ________________________________________________________________
+ | ___J16_____ ___J17____ __J18__ _______________________ |
+ | | ······ · | | ···· ·· | | ·· · | | :::::::::::::::::::: | |
+ | ____ |
+ | __ __________ |___| ____ __________________ : <- JMP4
+ || | | PIA 5 | |___| | RAM | |
+ ||J| | OKI | ____ | M48T08/M48T18 | |
+ ||1| | 82C55A | |___| |_________________| |
+ ||5| |_________| __________________ : <- JMP3
+ ||_| | LOW | : <- JMP2
+ | __ __________ ____________ | | |
+ ||J| | PIA 4 | XTAL | Intel | |_________________| |
+ ||11 | OKI | 32.000 |M80C188XL20| __________________ : <- JMP1
+ | __ | 82C55A | MHz | | | HIGH |__ |
+ ||J| |_________| | | | ||J||
+ ||1| |___________| |_________________||1||
+ ||4| __________ ____ |9||
+ | __ | PIA 6 | ____ ____ ______ |___| |_||
+ ||J| | OKI | HC573A HC573A |OKI | ____ __ |
+ ||6| | 82C55A | 82C51A| |___| |J||
+ ||_| |_________| __________________ ____ |8||
+ | __ _______ | SONIDO 2 | |___| |_||
+ || |SW3->DIPSx4| | | __ |
+ ||J| __________ |________________| |J||
+ ||7| | PIA 3 | __________________ __________ |9||
+ ||_| | OKI | | SONIDO 1 | |ULN2803A_| |_||
+ | __ | 82C55A | | | :: ________ __ |
+ || | |_________| |________________| JMP8 |74HC238E| |J||
+ ||J| _____ |5||
+ ||4| __________ |____| __ |
+ || | | PIA 1 | ___________ ......<-JMP10 |J||
+ ||_| | OKI | | OKI | |1||
+ | __ | 82C55A | | M6376 | XTAL 9.8304 |2||
+ ||J| |_________| |__________| MHz __ |
+ ||2| _____SW2__ ____JMP7 RS232-2 RS232-1 ____ |J||
+ ||0| |_DIPSx8__| HC4040 : :::: :::: |___| |1||
+ ||_| __________ ____ ______ ____ ____ |0||
+ | __ | PIA 2 | |___| |OKI | |___| |___| __ |
+ ||J| | OKI | ____ 82C51A| ____ |J||
+ ||3| | 82C55A | |___| _ |___| |1||
+ || | |_________| VOLUMEN->(_) _________ |3||
+ ||_| |_LM380N_| |_||
+ | _______ ____________ ____________ ______ |
+ |SW1->DIPSx4| |___________| |___________| |_____| |
+ |_______________________________________________________________|
+
+ JPM7 = CLK/128 / CLK/64
+
+*******************************************************************************/
+
+#include "emu.h"
+
+#include "cpu/i86/i186.h"
+#include "sound/okim6376.h"
+
+#include "speaker.h"
+
+namespace
+{
+
+class rf51w14cg_state : public driver_device
+{
+public:
+ rf51w14cg_state(const machine_config &mconfig, device_type type, const char *tag)
+ : driver_device(mconfig, type, tag)
+ , m_maincpu(*this, "maincpu")
+ , m_okim6376(*this, "oki")
+ {
+ }
+
+ void rf51w14cg(machine_config &config);
+
+protected:
+ required_device <cpu_device> m_maincpu;
+ required_device <okim6376_device> m_okim6376;
+};
+
+static INPUT_PORTS_START( rf51w14cg )
+ PORT_START("DSW1")
+ PORT_DIPUNKNOWN_DIPLOC(0x01, 0x01, "SW1:1")
+ PORT_DIPUNKNOWN_DIPLOC(0x02, 0x02, "SW1:2")
+ PORT_DIPUNKNOWN_DIPLOC(0x04, 0x04, "SW1:3")
+ PORT_DIPUNKNOWN_DIPLOC(0x08, 0x08, "SW1:4")
+
+ PORT_START("DSW2")
+ PORT_DIPUNKNOWN_DIPLOC(0x01, 0x01, "SW1:1")
+ PORT_DIPUNKNOWN_DIPLOC(0x02, 0x02, "SW1:2")
+ PORT_DIPUNKNOWN_DIPLOC(0x04, 0x04, "SW1:3")
+ PORT_DIPUNKNOWN_DIPLOC(0x08, 0x08, "SW1:4")
+ PORT_DIPUNKNOWN_DIPLOC(0x10, 0x10, "SW1:5")
+ PORT_DIPUNKNOWN_DIPLOC(0x20, 0x20, "SW1:6")
+ PORT_DIPUNKNOWN_DIPLOC(0x40, 0x40, "SW1:7")
+ PORT_DIPUNKNOWN_DIPLOC(0x80, 0x80, "SW1:8")
+
+ PORT_START("DSW3")
+ PORT_DIPUNKNOWN_DIPLOC(0x01, 0x01, "SW1:1")
+ PORT_DIPUNKNOWN_DIPLOC(0x02, 0x02, "SW1:2")
+ PORT_DIPUNKNOWN_DIPLOC(0x04, 0x04, "SW1:3")
+ PORT_DIPUNKNOWN_DIPLOC(0x08, 0x08, "SW1:4")
+INPUT_PORTS_END
+
+void rf51w14cg_state::rf51w14cg(machine_config &config)
+{
+ I80188(config, m_maincpu, 32_MHz_XTAL / 2); // Intel N80C188XL-20, guess divisor
+
+ SPEAKER(config, "mono").front_center();
+
+ OKIM6376(config, m_okim6376, XTAL(9'830'400)/64).add_route(ALL_OUTPUTS, "mono", 1.0); // Frecuency divisor as per JMP7
+}
+
+// The board was found with the program ROMs sockets unpopulated and the M48T08 with the battery dead
+ROM_START( rf51w14cg )
+ ROM_REGION( 0x100000, "maincpu", 0 )
+ ROM_LOAD( "high.bin", 0x00000, 0x80000, NO_DUMP )
+ ROM_LOAD( "low.bin", 0x80000, 0x80000, NO_DUMP )
+
+ ROM_REGION( 0x100000, "oki", 0 )
+ ROM_LOAD( "recreativos_franco_sonido-1_321dabf_01083c.u3", 0x00000, 0x80000, CRC(bd9bb391) SHA1(f08da81544e6b8c518634d081bf68d862b90c099) )
+ ROM_LOAD( "recreativos_franco_sonido-2_7c8bced_01083d.u4", 0x80000, 0x80000, CRC(cf8e7957) SHA1(5d30d7f15c1690b819e467fc308f12f97577b906) )
+
+ ROM_REGION( 0x2000, "nvram", 0 )
+ ROM_LOAD( "recreativos_franco_mod_rf51w14-cg_2003_m48t08.bin", 0x0000, 0x2000, NO_DUMP )
+ROM_END
+
+} // anonymous namespace
+
+// YEAR NAME PARENT MACHINE INPUT CLASS INIT ROT COMPANY FULLNAME FLAGS
+GAME( 2003, rf51w14cg, 0, rf51w14cg, rf51w14cg, rf51w14cg_state, empty_init, ROT0, "Recreativos Franco", "unknown Recreativos Franco slot machine (model RF51W14-CG)", MACHINE_IS_SKELETON_MECHANICAL )
diff --git a/src/mame/mame.lst b/src/mame/mame.lst
index 08eb1c29520..2b5e32a38f5 100644
--- a/src/mame/mame.lst
+++ b/src/mame/mame.lst
@@ -35551,6 +35551,9 @@ ds2 //
oz750 // 199? Sharp Wizard OZ-750
rex6000 //
+@source:rf51w14cg.cpp
+rf51w14cg // (c) 2003 Recreativos Franco
+
@source:rfslots8085.cpp
unkrfslt //