Skip to content

Commit

Permalink
New NOT_WORKING machine (#8122)
Browse files Browse the repository at this point in the history
* New NOT_WORKING machine
----------------------
Super Chexx (EM Bubble Hockey) [ClawGrip]
  • Loading branch information
clawgrip authored Jun 3, 2021
1 parent 37b944e commit 43a6837
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 0 deletions.
1 change: 1 addition & 0 deletions scripts/target/mame/arcade.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5091,6 +5091,7 @@ files {
MAME_DIR .. "src/mame/drivers/savquest.cpp",
MAME_DIR .. "src/mame/drivers/sanremo.cpp",
MAME_DIR .. "src/mame/drivers/sanremmg.cpp",
MAME_DIR .. "src/mame/drivers/schexx4gen.cpp",
MAME_DIR .. "src/mame/drivers/scm_500.cpp",
MAME_DIR .. "src/mame/drivers/sealy.cpp",
MAME_DIR .. "src/mame/drivers/sealy_fr.cpp",
Expand Down
1 change: 1 addition & 0 deletions src/mame/arcade.flt
Original file line number Diff line number Diff line change
Expand Up @@ -1095,6 +1095,7 @@ sbmjb.cpp
sbowling.cpp
sbrkout.cpp
sbugger.cpp
schexx4gen.cpp
schick.cpp
scm_500.cpp
scobra.cpp
Expand Down
46 changes: 46 additions & 0 deletions src/mame/drivers/schexx4gen.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
// license:BSD-3-Clause
// copyright-holders:
/****************************************************************************
Skeleton driver for 4th Generation "Super Chexx" bubble jockey
electromechanical machines
****************************************************************************/

#include "emu.h"
#include "cpu/mc68hc11/mc68hc11.h"

namespace {

class schexx_state : public driver_device
{

public:
schexx_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag)
, m_maincpu(*this, "maincpu")
{
}

void schexx(machine_config &config);

private:
required_device<mc68hc11_cpu_device> m_maincpu;
};

INPUT_PORTS_START(schexx)
INPUT_PORTS_END

void schexx_state::schexx(machine_config &config)
{
MC68HC11A1(config, m_maincpu, 8_MHz_XTAL);
}

ROM_START(schexx)
ROM_REGION(0x80000, "program", 0)
ROM_LOAD("schexx1_2_040.u4", 0x0000, 0x80000, CRC(8cbb7172) SHA1(ba59f7d8dd7e08c837181e18ce15e3c976f8f00b))
ROM_END

} // Anonymous namespace

GAME(1996, schexx, 0, schexx, schexx, schexx_state, empty_init, ROT0, "ICE", "Super Chexx (EM Bubble Hockey)", MACHINE_IS_SKELETON_MECHANICAL)
3 changes: 3 additions & 0 deletions src/mame/mame.lst
Original file line number Diff line number Diff line change
Expand Up @@ -36803,6 +36803,9 @@ sc2a //
@source:schick.cpp
schick // Microhard

@source:schexx4gen.cpp
schexx // (c) 1996 ICE

@source:scm_500.cpp
scm_500 //

Expand Down

0 comments on commit 43a6837

Please sign in to comment.