diff options
author | 2016-08-18 16:09:12 +0200 | |
---|---|---|
committer | 2016-08-18 16:09:12 +0200 | |
commit | de19eb547ff55b4c13e95ff039063bebd1395b23 (patch) | |
tree | 7ee2a923968ac68e6cef001d89c05e34099ec486 /src/devices/sound/k053260.h | |
parent | 6b83b0dbee760766c13b0150384da7342876255d (diff) |
Added YM2203, YM3526, AY-3-8910, NES APU, DMG APU, K053260, and MultiPCM to vgmplay, nw
Diffstat (limited to 'src/devices/sound/k053260.h')
-rw-r--r-- | src/devices/sound/k053260.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/devices/sound/k053260.h b/src/devices/sound/k053260.h index e80a2da87d7..18b5c9f25a7 100644 --- a/src/devices/sound/k053260.h +++ b/src/devices/sound/k053260.h @@ -32,14 +32,13 @@ // ======================> k053260_device class k053260_device : public device_t, - public device_sound_interface + public device_sound_interface, + public device_rom_interface { public: k053260_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); ~k053260_device() { } - static void set_region_tag(device_t &device, const char *tag) { downcast<k053260_device &>(device).m_rom.set_tag(tag); } - DECLARE_READ8_MEMBER( main_read ); DECLARE_WRITE8_MEMBER( main_write ); DECLARE_READ8_MEMBER( read ); @@ -56,7 +55,6 @@ protected: private: // configuration sound_stream * m_stream; - required_region_ptr<UINT8> m_rom; // live state UINT8 m_portdata[4]; |