summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine')
-rw-r--r--src/mess/machine/a2alfam2.c6
-rw-r--r--src/mess/machine/a2alfam2.h6
-rw-r--r--src/mess/machine/ti99/videowrp.c4
-rw-r--r--src/mess/machine/wangpckb.c4
4 files changed, 10 insertions, 10 deletions
diff --git a/src/mess/machine/a2alfam2.c b/src/mess/machine/a2alfam2.c
index 0d91d1e0beb..6a11b71cca9 100644
--- a/src/mess/machine/a2alfam2.c
+++ b/src/mess/machine/a2alfam2.c
@@ -35,14 +35,14 @@ static const sn76496_config psg_intf =
MACHINE_CONFIG_FRAGMENT( a2alfam2 )
MCFG_SPEAKER_STANDARD_STEREO("alf_l", "alf_r")
- MCFG_SOUND_ADD(SN1_TAG, SN76489_NEW, XTAL_3_579545MHz)
+ MCFG_SOUND_ADD(SN1_TAG, SN76489, XTAL_3_579545MHz)
MCFG_SOUND_CONFIG(psg_intf)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "alf_l", 0.50)
- MCFG_SOUND_ADD(SN2_TAG, SN76489_NEW, XTAL_3_579545MHz)
+ MCFG_SOUND_ADD(SN2_TAG, SN76489, XTAL_3_579545MHz)
MCFG_SOUND_CONFIG(psg_intf)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "alf_l", 0.50)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "alf_r", 0.50)
- MCFG_SOUND_ADD(SN3_TAG, SN76489_NEW, XTAL_3_579545MHz)
+ MCFG_SOUND_ADD(SN3_TAG, SN76489, XTAL_3_579545MHz)
MCFG_SOUND_CONFIG(psg_intf)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "alf_r", 0.50)
MACHINE_CONFIG_END
diff --git a/src/mess/machine/a2alfam2.h b/src/mess/machine/a2alfam2.h
index 87895603254..b161dde3124 100644
--- a/src/mess/machine/a2alfam2.h
+++ b/src/mess/machine/a2alfam2.h
@@ -29,9 +29,9 @@ public:
// optional information overrides
virtual machine_config_constructor device_mconfig_additions() const;
- required_device<sn76489_new_device> m_sn1;
- required_device<sn76489_new_device> m_sn2;
- required_device<sn76489_new_device> m_sn3;
+ required_device<sn76489_device> m_sn1;
+ required_device<sn76489_device> m_sn2;
+ required_device<sn76489_device> m_sn3;
protected:
virtual void device_start();
diff --git a/src/mess/machine/ti99/videowrp.c b/src/mess/machine/ti99/videowrp.c
index e42fb8960ea..e913c34e3c9 100644
--- a/src/mess/machine/ti99/videowrp.c
+++ b/src/mess/machine/ti99/videowrp.c
@@ -206,14 +206,14 @@ WRITE_LINE_MEMBER( ti_sound_system_device::sound_ready )
MACHINE_CONFIG_FRAGMENT( sn94624 )
MCFG_SPEAKER_STANDARD_MONO("sound_out")
- MCFG_SOUND_ADD(TISOUNDCHIP_TAG, SN94624_NEW, 3579545/8) /* 3.579545 MHz */
+ MCFG_SOUND_ADD(TISOUNDCHIP_TAG, SN94624, 3579545/8) /* 3.579545 MHz */
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "sound_out", 0.75)
MCFG_SOUND_CONFIG(sound_config)
MACHINE_CONFIG_END
MACHINE_CONFIG_FRAGMENT( sn76496 )
MCFG_SPEAKER_STANDARD_MONO("sound_out")
- MCFG_SOUND_ADD(TISOUNDCHIP_TAG, SN76496_NEW, 3579545) /* 3.579545 MHz */
+ MCFG_SOUND_ADD(TISOUNDCHIP_TAG, SN76496, 3579545) /* 3.579545 MHz */
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "sound_out", 0.75)
MCFG_SOUND_CONFIG(sound_config)
MACHINE_CONFIG_END
diff --git a/src/mess/machine/wangpckb.c b/src/mess/machine/wangpckb.c
index 2bc846daa8c..a7844a4026c 100644
--- a/src/mess/machine/wangpckb.c
+++ b/src/mess/machine/wangpckb.c
@@ -100,7 +100,7 @@ const rom_entry *wangpc_keyboard_device::device_rom_region() const
static ADDRESS_MAP_START( wangpc_keyboard_io, AS_IO, 8, wangpc_keyboard_device )
//AM_RANGE(0x0000, 0xfeff) AM_READNOP
AM_RANGE(0x47, 0x58) AM_MIRROR(0xff00) AM_READNOP
- AM_RANGE(0x00, 0x00) AM_MIRROR(0xff00) AM_DEVWRITE(SN76496_TAG, sn76496_new_device, write)
+ AM_RANGE(0x00, 0x00) AM_MIRROR(0xff00) AM_DEVWRITE(SN76496_TAG, sn76496_device, write)
AM_RANGE(MCS51_PORT_P1, MCS51_PORT_P1) AM_READWRITE(kb_p1_r, kb_p1_w)
AM_RANGE(MCS51_PORT_P2, MCS51_PORT_P2) AM_WRITE(kb_p2_w)
AM_RANGE(MCS51_PORT_P3, MCS51_PORT_P3) AM_WRITE(kb_p3_w)
@@ -127,7 +127,7 @@ static MACHINE_CONFIG_FRAGMENT( wangpc_keyboard )
// sound hardware
MCFG_SPEAKER_STANDARD_MONO("mono")
- MCFG_SOUND_ADD(SN76496_TAG, SN76496_NEW, 2000000) // ???
+ MCFG_SOUND_ADD(SN76496_TAG, SN76496, 2000000) // ???
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.00)
MCFG_SOUND_CONFIG(psg_intf)
MACHINE_CONFIG_END