summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/sc2.c
diff options
context:
space:
mode:
author Curt Coder <curtcoder@mail.com>2012-11-26 16:04:41 +0000
committer Curt Coder <curtcoder@mail.com>2012-11-26 16:04:41 +0000
commitabbfd858eafb54a8da936e66518e52f08be6342a (patch)
treeba7d106bc8e02d3968d2312510294d3fe4edbe95 /src/mess/drivers/sc2.c
parente8b103c2cbfb780f2c56aa6483fbee9e3990311a (diff)
Replaced all device_t's with actual device classes. Regression test recommended. (nw)
Diffstat (limited to 'src/mess/drivers/sc2.c')
-rw-r--r--src/mess/drivers/sc2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/sc2.c b/src/mess/drivers/sc2.c
index 8af42a73ed1..d1a66bd86f4 100644
--- a/src/mess/drivers/sc2.c
+++ b/src/mess/drivers/sc2.c
@@ -23,7 +23,7 @@ public:
m_beep(*this, BEEPER_TAG)
{ }
- required_device<device_t> m_beep;
+ required_device<beep_device> m_beep;
DECLARE_READ8_MEMBER(pio_port_a_r);
DECLARE_READ8_MEMBER(pio_port_b_r);
DECLARE_WRITE8_MEMBER(pio_port_a_w);
1100'>2019-11-011-4/+4 * gen_latch.cpp : Remove unnecessary arguments in handlers (#4623) cam9002019-03-291-1/+1 * (nw) Clean up the mess on master Vas Crabb2019-03-261-4/+0 * Revert "conflict resolution (nw)" andreasnaive2019-03-251-0/+4 * volt_reg: set default m_output (nw) hap2019-02-191-4/+0 * -devices/sound/3526intf: Removed MCG macro, nw mooglyguy2018-12-291-126/+138 * ay8910: penultimate batch of MCFG removal (nw) Ivan Vangelista2018-11-131-22/+22 * as if millions of this pointers suddenly cried out in terror, and were sudden... Vas Crabb2018-06-081-31/+31 * use plural names for output finders when there are multiple outputs (#3595) wilbertpol2018-05-271-8/+8 * Further output_finder fixes (nw) AJR2018-05-211-0/+4 * Replace set_led_value and set_lamp_value with output_finders. [Wilbe… (#3592) wilbertpol2018-05-201-6/+6 * Revert "- Removed MACHINE/SOUND/VIDEO _START/_RESET macros. This has the side... Vas Crabb2018-05-161-10/+10 * - Removed MACHINE/SOUND/VIDEO _START/_RESET macros. This has the side effect ... MooglyGuy2018-05-161-10/+10 * More cleanup/streamlining of machine configuration and macros: Vas Crabb2018-05-151-6/+6 * Removed DRIVER_INIT-related macros, made driver init entry in GAME/COMP/CONS ... MooglyGuy2018-05-131-5/+5 * dsp16: fix condition mask in disassembler (nw) Vas Crabb2018-05-091-4/+8 * (nw) misc follow-up Vas Crabb2018-05-061-3/+3 * Streamline machine configuration macros - everyone's a device edition. Vas Crabb2018-05-061-48/+48 * Make MCFG_DEVICE_ADD and callable device types more flexible: Vas Crabb2018-05-041-12/+12 * Address maps macros removal, pass 1 [O. Galibert] Olivier Galibert2018-03-141-126/+142 * API change: Memory maps are now methods of the owner class [O. Galibert] Olivier Galibert2018-02-121-16/+16 * xtal.h is dead, long live to xtal.cpp [O. Galibert] Olivier Galibert2018-01-231-18/+18 * API Change: Machine configs are now a method of the owner class, and the prot... Olivier Galibert2018-01-171-4/+4 * This causes huge changes in behaviour that can't be hand-waved away. Vas Crabb2018-01-131-12/+17 * New way to provide DAC reference inputs (nw) AJR2018-01-101-17/+12 * Extended time! All space.device() removed from comments (nw) Olivier Galibert2018-01-051-1/+1 * Handle a small number that only need a device variable to be added (nw) Olivier Galibert2018-01-021-3/+3 * Do the easy ones (nw) Olivier Galibert2018-01-011-4/+4 * Move static data out of devices into the device types. This is a significant... Vas Crabb2017-05-141-9/+9