summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/vlc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/vlc.cpp')
-rw-r--r--src/mame/drivers/vlc.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/drivers/vlc.cpp b/src/mame/drivers/vlc.cpp
index b31a3330d84..d4faed6ff54 100644
--- a/src/mame/drivers/vlc.cpp
+++ b/src/mame/drivers/vlc.cpp
@@ -168,6 +168,11 @@ public:
m_gfxdecode(*this, "gfxdecode")
{ }
+ void nevada(machine_config &config);
+
+ void init_nevada();
+
+private:
required_device_array<mc68681_device, 3> m_duart;
required_device<msm6242_device> m_rtc;
@@ -204,11 +209,9 @@ public:
DECLARE_WRITE16_MEMBER( vram_w );
DECLARE_MACHINE_START(nevada);
- void init_nevada();
TILE_GET_INFO_MEMBER(get_bg_tile_info);
- void nevada(machine_config &config);
void nevada_map(address_map &map);
};