summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/volfied.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/volfied.h')
-rw-r--r--src/mame/includes/volfied.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/includes/volfied.h b/src/mame/includes/volfied.h
index b1280af475f..e1a057391c9 100644
--- a/src/mame/includes/volfied.h
+++ b/src/mame/includes/volfied.h
@@ -18,11 +18,6 @@
class volfied_state : public driver_device
{
public:
- enum
- {
- TIMER_VOLFIED
- };
-
volfied_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
@@ -33,6 +28,13 @@ public:
m_cchip_irq_clear(*this, "cchip_irq_clear")
{ }
+ void volfied(machine_config &config);
+
+private:
+ enum
+ {
+ TIMER_VOLFIED
+ };
DECLARE_READ16_MEMBER(video_ram_r);
DECLARE_WRITE16_MEMBER(video_ram_w);
DECLARE_WRITE16_MEMBER(video_ctrl_w);
@@ -49,11 +51,9 @@ public:
void refresh_pixel_layer( bitmap_ind16 &bitmap );
- void volfied(machine_config &config);
void main_map(address_map &map);
void z80_map(address_map &map);
-private:
/* memory pointers */
std::unique_ptr<uint16_t[]> m_video_ram;