summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/astrocde.cpp
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2019-03-17 00:28:28 +0100
committer MooglyGuy <therealmogminer@gmail.com>2019-03-17 00:28:54 +0100
commitb5c19e9fb2ebcbc061702dc99befeab38af94b42 (patch)
treec36d546fcdea20b90e3f62a809194a19bc175ebf /src/mame/drivers/astrocde.cpp
parent06fd6e6cff12039d26fb5bb6c3b4e9b73b47f55d (diff)
-astrocade: Various changes. [Ryan Holtz]
* Removed inaccurate comment from astrocde.xml regarding the 2000-baud tape interface. * Converted astrohome controllers to slot devices. * Added preliminary (not yet working) 300-baud cassette tape slot device. * Changed potentiometer callbacks from tagged IO ports to devcb3. -device: Added feature flag to indicate lack of, or support for, cassette. (nw)
Diffstat (limited to 'src/mame/drivers/astrocde.cpp')
-rw-r--r--src/mame/drivers/astrocde.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/astrocde.cpp b/src/mame/drivers/astrocde.cpp
index 9008ba5b7aa..a9e5c09ba90 100644
--- a/src/mame/drivers/astrocde.cpp
+++ b/src/mame/drivers/astrocde.cpp
@@ -1475,8 +1475,8 @@ void demndrgn_state::demndrgn(machine_config &config)
outlatch.bit_handler<4>().set(FUNC(demndrgn_state::input_select_w));
m_astrocade_sound1->so_cb<4>().set("outlatch", FUNC(output_latch_device::bus_w));
- m_astrocade_sound1->set_pot_tag<0>("FIREX");
- m_astrocade_sound1->set_pot_tag<1>("FIREY");
+ m_astrocade_sound1->pot_cb<0>().set_ioport("FIREX");
+ m_astrocade_sound1->pot_cb<1>().set_ioport("FIREY");
}
void tenpindx_state::tenpindx(machine_config &config)