diff options
author | 2012-11-26 16:04:41 +0000 | |
---|---|---|
committer | 2012-11-26 16:04:41 +0000 | |
commit | abbfd858eafb54a8da936e66518e52f08be6342a (patch) | |
tree | ba7d106bc8e02d3968d2312510294d3fe4edbe95 /src/mess/includes/intv.h | |
parent | e8b103c2cbfb780f2c56aa6483fbee9e3990311a (diff) |
Replaced all device_t's with actual device classes. Regression test recommended. (nw)
Diffstat (limited to 'src/mess/includes/intv.h')
-rw-r--r-- | src/mess/includes/intv.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mess/includes/intv.h b/src/mess/includes/intv.h index bd92507db60..ab9df0ab7b1 100644 --- a/src/mess/includes/intv.h +++ b/src/mess/includes/intv.h @@ -7,6 +7,9 @@ #ifndef INTV_H_ #define INTV_H_ +#include "sound/ay8910.h" +#include "sound/sp0256.h" + struct intv_sprite_type { int visible; @@ -41,9 +44,9 @@ public: { } required_device<cpu_device> m_maincpu; - required_device<device_t> m_intellivoice; - required_device<device_t> m_sound; - optional_device<device_t> m_ecs_sound; + required_device<sp0256_device> m_intellivoice; + required_device<ay8914_device> m_sound; + optional_device<ay8914_device> m_ecs_sound; optional_shared_ptr<UINT16> m_intvkbd_dualport_ram; optional_shared_ptr<UINT8> m_videoram; |