summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/undrfire.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/undrfire.h')
-rw-r--r--src/mame/includes/undrfire.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mame/includes/undrfire.h b/src/mame/includes/undrfire.h
index 53cffbe88d5..7cd215d28e0 100644
--- a/src/mame/includes/undrfire.h
+++ b/src/mame/includes/undrfire.h
@@ -2,7 +2,6 @@
// copyright-holders:Bryan McPhail, David Graves
#include "machine/eepromser.h"
-#include "machine/watchdog.h"
#include "video/tc0100scn.h"
#include "video/tc0480scp.h"
@@ -31,7 +30,6 @@ public:
m_tc0100scn(*this, "tc0100scn"),
m_tc0480scp(*this, "tc0480scp"),
m_eeprom(*this, "eeprom"),
- m_watchdog(*this, "watchdog"),
m_ram(*this, "ram"),
m_shared_ram(*this, "shared_ram"),
m_spriteram(*this, "spriteram"),
@@ -43,7 +41,6 @@ public:
required_device<tc0100scn_device> m_tc0100scn;
required_device<tc0480scp_device> m_tc0480scp;
required_device<eeprom_serial_93cxx_device> m_eeprom;
- required_device<watchdog_timer_device> m_watchdog;
optional_shared_ptr<uint32_t> m_ram;
optional_shared_ptr<uint32_t> m_shared_ram;
uint16_t m_coin_word;
@@ -56,8 +53,7 @@ public:
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- DECLARE_READ32_MEMBER(undrfire_input_r);
- DECLARE_WRITE32_MEMBER(undrfire_input_w);
+ DECLARE_WRITE8_MEMBER(coin_word_w);
DECLARE_READ16_MEMBER(shared_ram_r);
DECLARE_WRITE16_MEMBER(shared_ram_w);
DECLARE_READ32_MEMBER(unknown_hardware_r);
@@ -68,7 +64,7 @@ public:
DECLARE_WRITE32_MEMBER(cbombers_cpua_ctrl_w);
DECLARE_READ32_MEMBER(cbombers_adc_r);
DECLARE_WRITE8_MEMBER(cbombers_adc_w);
- DECLARE_CUSTOM_INPUT_MEMBER(frame_counter_r);
+ DECLARE_READ_LINE_MEMBER(frame_counter_r);
DECLARE_DRIVER_INIT(undrfire);
DECLARE_DRIVER_INIT(cbombers);
virtual void video_start() override;