summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/ti99/datamux.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-05-14 06:46:50 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-05-14 06:46:50 +0000
commit546fbff34966f4f5f62930dd73c064df90d4e51e (patch)
treea2e859303874d5ee6cda105c465983e5223d5675 /src/mess/machine/ti99/datamux.h
parentc5a60146edfc6d9bf8ff7f398b0c3fa17b94b1e3 (diff)
devcv2 -> devcb (nw)
Diffstat (limited to 'src/mess/machine/ti99/datamux.h')
-rw-r--r--src/mess/machine/ti99/datamux.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/machine/ti99/datamux.h b/src/mess/machine/ti99/datamux.h
index f16148efc9b..64c36bd7d28 100644
--- a/src/mess/machine/ti99/datamux.h
+++ b/src/mess/machine/ti99/datamux.h
@@ -77,7 +77,7 @@ public:
DECLARE_WRITE_LINE_MEMBER( dbin_in );
DECLARE_WRITE_LINE_MEMBER( ready_line );
- template<class _Object> static devcb2_base &static_set_ready_callback(device_t &device, _Object object)
+ template<class _Object> static devcb_base &static_set_ready_callback(device_t &device, _Object object)
{
return downcast<ti99_datamux_device &>(device).m_ready.set_callback(object);
}
@@ -110,7 +110,7 @@ private:
void ready_join();
// Ready line to the CPU
- devcb2_write_line m_ready;
+ devcb_write_line m_ready;
// Own ready state.
line_state m_muxready;
@@ -154,4 +154,4 @@ private:
#endif
#define MCFG_DMUX_READY_HANDLER( _intcallb ) \
- devcb = &ti99_datamux_device::static_set_ready_callback( *device, DEVCB2_##_intcallb );
+ devcb = &ti99_datamux_device::static_set_ready_callback( *device, DEVCB_##_intcallb );