summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/tecmosys.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/tecmosys.h')
-rw-r--r--src/mame/includes/tecmosys.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/tecmosys.h b/src/mame/includes/tecmosys.h
index 39914faa7cc..2d0a4698f8a 100644
--- a/src/mame/includes/tecmosys.h
+++ b/src/mame/includes/tecmosys.h
@@ -22,7 +22,8 @@ public:
m_b00000regs(*this, "b00000regs"),
m_c00000regs(*this, "c00000regs"),
m_c80000regs(*this, "c80000regs"),
- m_880000regs(*this, "880000regs"){ }
+ m_880000regs(*this, "880000regs"),
+ m_maincpu(*this, "maincpu") { }
required_shared_ptr<UINT16> m_spriteram;
required_shared_ptr<UINT16> m_tilemap_paletteram16;
@@ -88,4 +89,5 @@ public:
void tecmosys_do_final_mix(bitmap_rgb32 &bitmap);
void tecmosys_descramble();
DECLARE_WRITE_LINE_MEMBER(sound_irq);
+ required_device<cpu_device> m_maincpu;
};