summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/amust.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/amust.cpp')
-rw-r--r--src/mame/drivers/amust.cpp17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/mame/drivers/amust.cpp b/src/mame/drivers/amust.cpp
index 26b455ca4ca..bdc8dd3dfba 100644
--- a/src/mame/drivers/amust.cpp
+++ b/src/mame/drivers/amust.cpp
@@ -98,11 +98,6 @@ ToDo:
class amust_state : public driver_device
{
public:
- enum
- {
- TIMER_BEEP_OFF
- };
-
amust_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag)
, m_palette(*this, "palette")
@@ -114,8 +109,17 @@ public:
, m_floppy0(*this, "fdc:0")
, m_floppy1(*this, "fdc:1")
{ }
+
+ void amust(machine_config &config);
void init_amust();
+
+private:
+ enum
+ {
+ TIMER_BEEP_OFF
+ };
+
DECLARE_MACHINE_RESET(amust);
DECLARE_READ8_MEMBER(port04_r);
DECLARE_WRITE8_MEMBER(port04_w);
@@ -132,10 +136,9 @@ public:
INTERRUPT_GEN_MEMBER(irq_vs);
MC6845_UPDATE_ROW(crtc_update_row);
- void amust(machine_config &config);
void io_map(address_map &map);
void mem_map(address_map &map);
-private:
+
u8 m_port04;
u8 m_port06;
u8 m_port08;