summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-05-21 02:24:37 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-05-21 02:24:37 -0400
commit5844d38beba702c9e27d7e52f42845c4ff62ca52 (patch)
tree97a3254a97e7420bc1d0159e742acba68804b507 /src/mame/includes
parentf5b42ab40312529e6df93ea2c90f59d5e0facc8c (diff)
suprnova.cpp, playch10.cpp: Eliminate machine().device (nw)
Diffstat (limited to 'src/mame/includes')
-rw-r--r--src/mame/includes/playch10.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mame/includes/playch10.h b/src/mame/includes/playch10.h
index 13e01f0a630..a5c1450ce5a 100644
--- a/src/mame/includes/playch10.h
+++ b/src/mame/includes/playch10.h
@@ -14,6 +14,7 @@ public:
playch10_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag)
, m_maincpu(*this, "maincpu")
+ , m_cartcpu(*this, "cart")
, m_ppu(*this, "ppu")
, m_rp5h01(*this, "rp5h01")
, m_ram_8w(*this, "ram_8w")
@@ -117,6 +118,7 @@ private:
uint32_t screen_update_playch10_single(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
+ required_device<cpu_device> m_cartcpu;
required_device<ppu2c0x_device> m_ppu;
optional_device<rp5h01_device> m_rp5h01;