summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tr175.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tr175.cpp')
-rw-r--r--src/mame/drivers/tr175.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/tr175.cpp b/src/mame/drivers/tr175.cpp
index f5e3f78351c..a2483da9233 100644
--- a/src/mame/drivers/tr175.cpp
+++ b/src/mame/drivers/tr175.cpp
@@ -21,16 +21,18 @@ public:
, m_maincpu(*this, "maincpu")
{ }
+ void tr175(machine_config &config);
+
+private:
DECLARE_WRITE8_MEMBER(ffec01_w);
DECLARE_WRITE8_MEMBER(fff000_w);
DECLARE_READ8_MEMBER(fff400_r);
SCN2674_DRAW_CHARACTER_MEMBER(draw_character);
- void tr175(machine_config &config);
void mem_map(address_map &map);
void ramdac_map(address_map &map);
void vram_map(address_map &map);
-private:
+
required_device<cpu_device> m_maincpu;
};