summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/swtpc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/swtpc.cpp')
-rw-r--r--src/mame/drivers/swtpc.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/mame/drivers/swtpc.cpp b/src/mame/drivers/swtpc.cpp
index 19bab2f9750..6d6db26618f 100644
--- a/src/mame/drivers/swtpc.cpp
+++ b/src/mame/drivers/swtpc.cpp
@@ -56,12 +56,14 @@ public:
, m_brg(*this, "brg")
{ }
- virtual void machine_start() override;
-
void swtpcm(machine_config &config);
void swtpc(machine_config &config);
- void mem_map(address_map &map);
+
private:
+ virtual void machine_start() override;
+
+ void mem_map(address_map &map);
+
required_device<cpu_device> m_maincpu;
required_device<ram_device> m_ram;
required_device<mc14411_device> m_brg;