summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2016-01-23 18:29:59 +0100
committer hap <happppp@users.noreply.github.com>2016-01-23 18:30:26 +0100
commit098b43d5202905f3ea444b5e356b2b646537e351 (patch)
treec8bb3d14437f5e44191566eb88a9595c36f2d350 /src/mame
parent60e8206509392f65d838837065af2bfa3cf70119 (diff)
s14001a_new is now s14001a
Diffstat (limited to 'src/mame')
-rw-r--r--src/mame/drivers/berzerk.cpp6
-rw-r--r--src/mame/drivers/fidel6502.cpp2
-rw-r--r--src/mame/drivers/fidelz80.cpp6
-rw-r--r--src/mame/drivers/st_mp200.cpp6
-rw-r--r--src/mame/drivers/wolfpack.cpp2
-rw-r--r--src/mame/includes/fidelz80.h4
-rw-r--r--src/mame/includes/wolfpack.h4
7 files changed, 15 insertions, 15 deletions
diff --git a/src/mame/drivers/berzerk.cpp b/src/mame/drivers/berzerk.cpp
index 5b0ce31c816..14d87d7d4ff 100644
--- a/src/mame/drivers/berzerk.cpp
+++ b/src/mame/drivers/berzerk.cpp
@@ -15,7 +15,7 @@
#include "audio/exidy.h"
#include "machine/74181.h"
#include "machine/nvram.h"
-#include "sound/s14001a_new.h"
+#include "sound/s14001a.h"
#include "video/resnet.h"
@@ -35,7 +35,7 @@ public:
{ }
required_device<cpu_device> m_maincpu;
- required_device<s14001a_new_device> m_s14001a;
+ required_device<s14001a_device> m_s14001a;
required_device<ttl74181_device> m_ls181_10c;
required_device<ttl74181_device> m_ls181_12c;
required_device<exidy_sound_device> m_custom;
@@ -1120,7 +1120,7 @@ static MACHINE_CONFIG_START( berzerk, berzerk_state )
/* audio hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")
- MCFG_SOUND_ADD("speech", S14001A_NEW, S14001_CLOCK/16/8) /* placeholder - the clock is software controllable */
+ MCFG_SOUND_ADD("speech", S14001A, S14001_CLOCK/16/8) /* placeholder - the clock is software controllable */
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.00)
MCFG_SOUND_ADD("exidy", EXIDY, 0)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.33)
diff --git a/src/mame/drivers/fidel6502.cpp b/src/mame/drivers/fidel6502.cpp
index 000f3f30d4f..f416aee0d52 100644
--- a/src/mame/drivers/fidel6502.cpp
+++ b/src/mame/drivers/fidel6502.cpp
@@ -332,7 +332,7 @@ static MACHINE_CONFIG_START( csc, fidel6502_state )
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")
- MCFG_SOUND_ADD("speech", S14001A_NEW, 25000) // around 25khz
+ MCFG_SOUND_ADD("speech", S14001A, 25000) // around 25khz
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.75)
MACHINE_CONFIG_END
diff --git a/src/mame/drivers/fidelz80.cpp b/src/mame/drivers/fidelz80.cpp
index 0dbc4e49d41..c7113407aa2 100644
--- a/src/mame/drivers/fidelz80.cpp
+++ b/src/mame/drivers/fidelz80.cpp
@@ -1430,7 +1430,7 @@ static MACHINE_CONFIG_START( vcc, fidelz80_state )
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")
- MCFG_SOUND_ADD("speech", S14001A_NEW, 25000) // R/C circuit, around 25khz
+ MCFG_SOUND_ADD("speech", S14001A, 25000) // R/C circuit, around 25khz
MCFG_S14001A_EXT_READ_HANDLER(READ8(fidelz80_state, vcc_speech_r))
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.75)
MACHINE_CONFIG_END
@@ -1458,7 +1458,7 @@ static MACHINE_CONFIG_START( vsc, fidelz80_state )
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")
- MCFG_SOUND_ADD("speech", S14001A_NEW, 25000) // R/C circuit, around 25khz
+ MCFG_SOUND_ADD("speech", S14001A, 25000) // R/C circuit, around 25khz
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.75)
MCFG_SOUND_ADD("speaker", SPEAKER_SOUND, 0)
@@ -1483,7 +1483,7 @@ static MACHINE_CONFIG_START( vbrc, fidelz80_state )
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")
- MCFG_SOUND_ADD("speech", S14001A_NEW, 25000) // R/C circuit, around 25khz
+ MCFG_SOUND_ADD("speech", S14001A, 25000) // R/C circuit, around 25khz
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.75)
MACHINE_CONFIG_END
diff --git a/src/mame/drivers/st_mp200.cpp b/src/mame/drivers/st_mp200.cpp
index 1a15b5dc249..686fdc5cdf3 100644
--- a/src/mame/drivers/st_mp200.cpp
+++ b/src/mame/drivers/st_mp200.cpp
@@ -19,7 +19,7 @@ ToDo:
#include "machine/genpin.h"
#include "cpu/m6800/m6800.h"
#include "machine/6821pia.h"
-#include "sound/s14001a_new.h"
+#include "sound/s14001a.h"
#include "st_mp200.lh"
#define S14001_CLOCK (25e5)
@@ -81,7 +81,7 @@ private:
virtual void machine_start() override;
virtual void machine_reset() override;
required_device<m6800_cpu_device> m_maincpu;
- optional_device<s14001a_new_device> m_s14001a;
+ optional_device<s14001a_device> m_s14001a;
required_device<pia6821_device> m_pia_u10;
required_device<pia6821_device> m_pia_u11;
required_ioport m_io_test;
@@ -619,7 +619,7 @@ MACHINE_CONFIG_END
static MACHINE_CONFIG_DERIVED( st_mp201, st_mp200 )
MCFG_SPEAKER_STANDARD_MONO("mono")
- MCFG_SOUND_ADD("speech", S14001A_NEW, S14001_CLOCK)
+ MCFG_SOUND_ADD("speech", S14001A, S14001_CLOCK)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.00)
MACHINE_CONFIG_END
diff --git a/src/mame/drivers/wolfpack.cpp b/src/mame/drivers/wolfpack.cpp
index 57a1e9bd256..c857e9eca53 100644
--- a/src/mame/drivers/wolfpack.cpp
+++ b/src/mame/drivers/wolfpack.cpp
@@ -319,7 +319,7 @@ static MACHINE_CONFIG_START( wolfpack, wolfpack_state )
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")
- MCFG_SOUND_ADD("speech", S14001A_NEW, 20000) /* RC Clock (C=100pf, R=470K-670K ohms, adjustable) ranging from 14925.37313hz to 21276.59574hz, likely factory set to 20000hz since anything below 19500 is too slow */
+ MCFG_SOUND_ADD("speech", S14001A, 20000) /* RC Clock (C=100pf, R=470K-670K ohms, adjustable) ranging from 14925.37313hz to 21276.59574hz, likely factory set to 20000hz since anything below 19500 is too slow */
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.00)
MACHINE_CONFIG_END
diff --git a/src/mame/includes/fidelz80.h b/src/mame/includes/fidelz80.h
index 52e69e564c8..c9aea6bafc4 100644
--- a/src/mame/includes/fidelz80.h
+++ b/src/mame/includes/fidelz80.h
@@ -7,7 +7,7 @@
******************************************************************************/
#include "emu.h"
-#include "sound/s14001a_new.h"
+#include "sound/s14001a.h"
class fidelz80base_state : public driver_device
{
@@ -26,7 +26,7 @@ public:
// devices/pointers
required_device<cpu_device> m_maincpu;
optional_ioport_array<10> m_inp_matrix; // max 10
- optional_device<s14001a_new_device> m_speech;
+ optional_device<s14001a_device> m_speech;
optional_region_ptr<UINT8> m_speech_rom;
// misc common
diff --git a/src/mame/includes/wolfpack.h b/src/mame/includes/wolfpack.h
index 012fd47d9b0..e1d4628eb86 100644
--- a/src/mame/includes/wolfpack.h
+++ b/src/mame/includes/wolfpack.h
@@ -6,7 +6,7 @@
***************************************************************************/
-#include "sound/s14001a_new.h"
+#include "sound/s14001a.h"
class wolfpack_state : public driver_device
{
@@ -29,7 +29,7 @@ public:
// devices, pointers
required_shared_ptr<UINT8> m_alpha_num_ram;
required_device<cpu_device> m_maincpu;
- required_device<s14001a_new_device> m_s14001a;
+ required_device<s14001a_device> m_s14001a;
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;