summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/genpin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/genpin.cpp')
-rw-r--r--src/mame/machine/genpin.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/mame/machine/genpin.cpp b/src/mame/machine/genpin.cpp
deleted file mode 100644
index 1c1ca11a38f..00000000000
--- a/src/mame/machine/genpin.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Robbbert
-/*********************************************************************************
-
-This is for common pinball machine coding.
-
-**********************************************************************************/
-
-#include "emu.h"
-#include "genpin.h"
-#include "speaker.h"
-
-void genpin_class::genpin_audio(machine_config &config)
-{
- SPEAKER(config, "mechvol").front_center();
- SAMPLES(config, m_samples);
- m_samples->set_channels(6);
- m_samples->set_samples_names(genpin_sample_names);
- m_samples->add_route(ALL_OUTPUTS, "mechvol", 1.0);
-}