summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/photon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/photon.cpp')
-rw-r--r--src/mame/drivers/photon.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/photon.cpp b/src/mame/drivers/photon.cpp
index 4d1903b2f3d..007c00602b3 100644
--- a/src/mame/drivers/photon.cpp
+++ b/src/mame/drivers/photon.cpp
@@ -34,6 +34,9 @@ public:
: pk8000_base_state(mconfig, type, tag),
m_speaker(*this, "speaker") { }
+ void photon(machine_config &config);
+
+private:
DECLARE_WRITE8_MEMBER(_80_porta_w);
DECLARE_READ8_MEMBER(_80_portb_r);
DECLARE_WRITE8_MEMBER(_80_portc_w);
@@ -48,7 +51,6 @@ public:
void set_bank(uint8_t data);
required_device<speaker_sound_device> m_speaker;
- void photon(machine_config &config);
void pk8000_io(address_map &map);
void pk8000_mem(address_map &map);
};