summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gaplus.h
diff options
context:
space:
mode:
author Andrew Gardner <andrew-gardner@users.noreply.github.com>2013-05-15 18:45:55 +0000
committer Andrew Gardner <andrew-gardner@users.noreply.github.com>2013-05-15 18:45:55 +0000
commitbb17e74fdca0eab3b0224638d350f54fedb027b4 (patch)
treee50877be20fb0ab6cfba79a55594dfedf4078365 /src/mame/includes/gaplus.h
parente7368bcefc7b4d62ab7201d4683228c051effb16 (diff)
Had time for a few more. (nw)
Diffstat (limited to 'src/mame/includes/gaplus.h')
-rw-r--r--src/mame/includes/gaplus.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mame/includes/gaplus.h b/src/mame/includes/gaplus.h
index 2da1356102d..24e39917190 100644
--- a/src/mame/includes/gaplus.h
+++ b/src/mame/includes/gaplus.h
@@ -10,6 +10,11 @@ struct star {
class gaplus_state : public driver_device
{
public:
+ enum
+ {
+ TIMER_NAMCOIO_RUN
+ };
+
gaplus_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_customio_3(*this,"customio_3"),
@@ -63,4 +68,7 @@ public:
required_device<cpu_device> m_subcpu;
required_device<cpu_device> m_subcpu2;
required_device<samples_device> m_samples;
+
+protected:
+ virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);
};