summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/namcos22.h
diff options
context:
space:
mode:
author Michaël Banaan Ananas <happppp@users.noreply.github.com>2014-09-21 21:50:53 +0000
committer Michaël Banaan Ananas <happppp@users.noreply.github.com>2014-09-21 21:50:53 +0000
commit6bb0f325dcdffbd0fdd14ec509a3ce96b87e206a (patch)
tree9f997e74714634ae1b716ff8777463bd6acf96a1 /src/mame/includes/namcos22.h
parent72d68f6a9acf080602fb6b326d9d00c0d5d3eb90 (diff)
ioport_array stuff
Diffstat (limited to 'src/mame/includes/namcos22.h')
-rw-r--r--src/mame/includes/namcos22.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/namcos22.h b/src/mame/includes/namcos22.h
index c7a51b28754..9a4ded501c7 100644
--- a/src/mame/includes/namcos22.h
+++ b/src/mame/includes/namcos22.h
@@ -199,7 +199,8 @@ public:
m_pc_pedal_interrupt(*this, "pc_p_int"),
m_gfxdecode(*this, "gfxdecode"),
m_screen(*this, "screen"),
- m_palette(*this, "palette")
+ m_palette(*this, "palette"),
+ m_adc_inp(*this, "ADC")
{ }
required_device<cpu_device> m_maincpu;
@@ -228,6 +229,7 @@ public:
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
+ optional_ioport_array<8> m_adc_inp;
UINT8 m_syscontrol[0x20];
@@ -479,10 +481,8 @@ public:
TILE_GET_INFO_MEMBER(get_text_tile_info);
virtual void machine_reset();
virtual void machine_start();
+ virtual void video_start();
DECLARE_MACHINE_START(adillor);
- DECLARE_VIDEO_START(namcos22s);
- DECLARE_VIDEO_START(namcos22);
- DECLARE_VIDEO_START(common);
UINT32 screen_update_namcos22s(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
UINT32 screen_update_namcos22(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(namcos22s_interrupt);