summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/jeutel.cpp
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2018-05-27 01:39:34 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2018-05-27 01:39:34 +1000
commit3bf53341613c3f22d706b6abf10b832b4a21ccaa (patch)
treeb699ba79eebce2c1d4a8b304b0b0e13cc000624d /src/mame/drivers/jeutel.cpp
parent98aeb64c3c16843e2be02223ffc644f41ad5724a (diff)
(nw) quick protection before freeze
Diffstat (limited to 'src/mame/drivers/jeutel.cpp')
-rw-r--r--src/mame/drivers/jeutel.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/drivers/jeutel.cpp b/src/mame/drivers/jeutel.cpp
index 7b81d56782f..7c3e32d5541 100644
--- a/src/mame/drivers/jeutel.cpp
+++ b/src/mame/drivers/jeutel.cpp
@@ -40,17 +40,20 @@ public:
{ }
void init_jeutel();
+ void jeutel(machine_config &config);
+
+protected:
DECLARE_READ8_MEMBER(portb_r);
DECLARE_WRITE8_MEMBER(porta_w);
DECLARE_WRITE8_MEMBER(ppi0a_w);
DECLARE_WRITE8_MEMBER(ppi0b_w);
DECLARE_WRITE8_MEMBER(sndcmd_w);
TIMER_DEVICE_CALLBACK_MEMBER(timer_a);
- void jeutel(machine_config &config);
void jeutel_cpu2(address_map &map);
void jeutel_cpu3(address_map &map);
void jeutel_cpu3_io(address_map &map);
void jeutel_map(address_map &map);
+
private:
bool m_timer_a;
uint8_t m_sndcmd;