summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/nexus3d.cpp
diff options
context:
space:
mode:
author David Haywood <hazemamewip@hotmail.com>2018-07-01 02:34:14 +0100
committer ajrhacker <ajrhacker@users.noreply.github.com>2018-06-30 21:34:14 -0400
commit7bfe316fd41e7c2bb9ef1bb160f152ae1635e9f9 (patch)
tree4422f6f2e8735c92c81f1027adfadbbe2ba25793 /src/mame/drivers/nexus3d.cpp
parent296de771c3a9f7712f72e600dcb381a2c94190db (diff)
stronger private: use (N, O, P, Q, R) (#3717)
* private N,O (nw) * P + Q (nw) * R (nt)
Diffstat (limited to 'src/mame/drivers/nexus3d.cpp')
-rw-r--r--src/mame/drivers/nexus3d.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/drivers/nexus3d.cpp b/src/mame/drivers/nexus3d.cpp
index 9d165009ca0..e71b0b25951 100644
--- a/src/mame/drivers/nexus3d.cpp
+++ b/src/mame/drivers/nexus3d.cpp
@@ -34,6 +34,11 @@ public:
m_serflash(*this, "flash")
{ }
+ void nexus3d(machine_config &config);
+
+ void init_nexus3d();
+
+private:
required_shared_ptr<uint32_t> m_mainram;
required_device<cpu_device> m_maincpu;
required_device<serflash_device> m_serflash;
@@ -44,11 +49,9 @@ public:
// DECLARE_WRITE32_MEMBER(nexus3d_unk2_w);
// DECLARE_WRITE32_MEMBER(nexus3d_unk3_w);
- void init_nexus3d();
virtual void machine_reset() override;
virtual void video_start() override;
uint32_t screen_update_nexus3d(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
- void nexus3d(machine_config &config);
void nexus3d_map(address_map &map);
};