summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/c6280.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/c6280.h')
-rw-r--r--src/devices/sound/c6280.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/devices/sound/c6280.h b/src/devices/sound/c6280.h
index 1c5474e3adf..ea54ad17188 100644
--- a/src/devices/sound/c6280.h
+++ b/src/devices/sound/c6280.h
@@ -5,17 +5,12 @@
#pragma once
-#include "cpu/h6280/h6280.h"
-
class c6280_device : public device_t, public device_sound_interface
{
public:
c6280_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- void set_devicecpu_tag(const char *tag) { m_cpudevice.set_tag(tag); }
-
- // read/write
- DECLARE_READ8_MEMBER( c6280_r );
+ // write only
DECLARE_WRITE8_MEMBER( c6280_w );
protected:
@@ -43,7 +38,6 @@ private:
// internal state
sound_stream *m_stream;
- required_device<h6280_device> m_cpudevice;
uint8_t m_select;
uint8_t m_balance;
uint8_t m_lfo_frequency;