summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/fc100.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/fc100.cpp')
-rw-r--r--src/mame/drivers/fc100.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mame/drivers/fc100.cpp b/src/mame/drivers/fc100.cpp
index ef225404654..9fe28d2645d 100644
--- a/src/mame/drivers/fc100.cpp
+++ b/src/mame/drivers/fc100.cpp
@@ -68,6 +68,11 @@ public:
, m_keyboard(*this, "KEY.%u", 0)
{ }
+ void fc100(machine_config &config);
+
+ void init_fc100();
+
+private:
DECLARE_READ8_MEMBER(mc6847_videoram_r);
DECLARE_READ8_MEMBER(port00_r);
DECLARE_WRITE8_MEMBER(port31_w);
@@ -76,7 +81,6 @@ public:
DECLARE_WRITE8_MEMBER(port60_w);
DECLARE_WRITE8_MEMBER(port70_w);
DECLARE_WRITE_LINE_MEMBER(txdata_callback);
- void init_fc100();
TIMER_DEVICE_CALLBACK_MEMBER(timer_c);
TIMER_DEVICE_CALLBACK_MEMBER(timer_p);
TIMER_DEVICE_CALLBACK_MEMBER(timer_k);
@@ -85,10 +89,9 @@ public:
{
return m_p_chargen[(ch * 16 + line) & 0xfff];
}
- void fc100(machine_config &config);
void fc100_io(address_map &map);
void fc100_mem(address_map &map);
-private:
+
virtual void machine_start() override;
virtual void machine_reset() override;