summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/namcos22.h
diff options
context:
space:
mode:
author Michaël Banaan Ananas <happppp@users.noreply.github.com>2014-10-04 22:10:55 +0000
committer Michaël Banaan Ananas <happppp@users.noreply.github.com>2014-10-04 22:10:55 +0000
commit8cd2b0efdd6c58d821839b10307b333e4f732a7a (patch)
tree78cdddf63e967d7682583e71e89e7598bcca6d60 /src/mame/includes/namcos22.h
parentd6f5671427794dfbe5756f6f9f0add3ad018cc3f (diff)
fix debug assert
Diffstat (limited to 'src/mame/includes/namcos22.h')
-rw-r--r--src/mame/includes/namcos22.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mame/includes/namcos22.h b/src/mame/includes/namcos22.h
index 4c05f2d949f..1d613db967f 100644
--- a/src/mame/includes/namcos22.h
+++ b/src/mame/includes/namcos22.h
@@ -199,8 +199,7 @@ public:
m_pc_pedal_interrupt(*this, "pc_p_int"),
m_gfxdecode(*this, "gfxdecode"),
m_screen(*this, "screen"),
- m_palette(*this, "palette"),
- m_adc_ports(*this, "ADC")
+ m_palette(*this, "palette")
{ }
required_device<cpu_device> m_maincpu;
@@ -229,9 +228,8 @@ 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_ports;
-
+ ioport_port *m_adc_ports[8];
UINT8 m_syscontrol[0x20];
bool m_dsp_irq_enabled;
emu_timer *m_ar_tb_interrupt[2];