summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ti99/hexbus/hx5102.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ti99/hexbus/hx5102.cpp')
-rw-r--r--src/devices/bus/ti99/hexbus/hx5102.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/devices/bus/ti99/hexbus/hx5102.cpp b/src/devices/bus/ti99/hexbus/hx5102.cpp
index e95c31c8d1e..e1bfb5fcbfa 100644
--- a/src/devices/bus/ti99/hexbus/hx5102.cpp
+++ b/src/devices/bus/ti99/hexbus/hx5102.cpp
@@ -15,18 +15,20 @@
#include "emu.h"
#include "hx5102.h"
+#define TRACE_HEXBUS 0
+
DEFINE_DEVICE_TYPE_NS(TI_HX5102, bus::ti99::hexbus, hx5102_device, "ti_hx5102", "TI Hexbus Floppy")
namespace bus { namespace ti99 { namespace hexbus {
hx5102_device::hx5102_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock):
- device_t(mconfig, TI_HX5102, tag, owner, clock),
- device_ti_hexbus_interface(mconfig, *this)
+ hexbus_chained_device(mconfig, TI_HX5102, tag, owner, clock)
{
}
-void hx5102_device::device_start()
+void hx5102_device::hexbus_value_changed(uint8_t data)
{
+ if (TRACE_HEXBUS) logerror("Hexbus value changed to %02x\n", data);
}
} } } // end namespace bus::ti99::hexbus