diff options
Diffstat (limited to 'src/mame/includes/timeplt.h')
-rw-r--r-- | src/mame/includes/timeplt.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mame/includes/timeplt.h b/src/mame/includes/timeplt.h index 59a8210a2be..db16ac84016 100644 --- a/src/mame/includes/timeplt.h +++ b/src/mame/includes/timeplt.h @@ -6,6 +6,7 @@ ***************************************************************************/ +#include "machine/74259.h" #include "sound/tc8830f.h" #include "screen.h" @@ -16,6 +17,7 @@ public: : driver_device(mconfig, type, tag), m_maincpu(*this, "maincpu"), m_tc8830f(*this, "tc8830f"), + m_mainlatch(*this, "mainlatch"), m_gfxdecode(*this, "gfxdecode"), m_screen(*this, "screen"), m_palette(*this, "palette"), @@ -27,6 +29,7 @@ public: required_device<cpu_device> m_maincpu; optional_device<tc8830f_device> m_tc8830f; + required_device<ls259_device> m_mainlatch; required_device<gfxdecode_device> m_gfxdecode; required_device<screen_device> m_screen; required_device<palette_device> m_palette; @@ -82,4 +85,7 @@ public: void chkun(machine_config &config); void psurge(machine_config &config); void bikkuric(machine_config &config); + void chkun_main_map(address_map &map); + void psurge_main_map(address_map &map); + void timeplt_main_map(address_map &map); }; |