summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/beta.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-04-07 06:04:18 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-04-07 06:04:18 +0000
commitfec65e0b5766ade69e086d1c5b859d97494fce56 (patch)
treec22b07938e9ad590184f1276bc2bead6d888a78d /src/mess/machine/beta.h
parent30d94e51c53f30187a1bc565ef33e4744319790e (diff)
Cleanups and version bumpmame0153
Diffstat (limited to 'src/mess/machine/beta.h')
-rw-r--r--src/mess/machine/beta.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mess/machine/beta.h b/src/mess/machine/beta.h
index 5ffe06f822d..fa82244eb11 100644
--- a/src/mess/machine/beta.h
+++ b/src/mess/machine/beta.h
@@ -20,7 +20,7 @@ class beta_disk_device : public device_t
public:
beta_disk_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
~beta_disk_device() {}
-
+
DECLARE_READ8_MEMBER(status_r);
DECLARE_READ8_MEMBER(track_r);
DECLARE_READ8_MEMBER(sector_r);
@@ -32,18 +32,18 @@ public:
DECLARE_WRITE8_MEMBER(track_w);
DECLARE_WRITE8_MEMBER(sector_w);
DECLARE_WRITE8_MEMBER(data_w);
-
+
DECLARE_WRITE_LINE_MEMBER(wd179x_intrq_w);
DECLARE_WRITE_LINE_MEMBER(wd179x_drq_w);
-
+
int is_active();
void enable();
void disable();
void clear_status();
-
+
UINT8 m_betadisk_status;
UINT8 m_betadisk_active;
-
+
protected:
// device-level overrides
virtual void device_start();