summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/mb89371.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/mb89371.cpp')
-rw-r--r--src/devices/machine/mb89371.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/devices/machine/mb89371.cpp b/src/devices/machine/mb89371.cpp
index 90bc2097df8..9c9a0d0e34a 100644
--- a/src/devices/machine/mb89371.cpp
+++ b/src/devices/machine/mb89371.cpp
@@ -11,10 +11,10 @@
#include "emu.h"
#include "mb89371.h"
-const device_type MB89371 = device_creator<mb89371_device>;
+DEFINE_DEVICE_TYPE(MB89371, mb89371_device, "mb89371", "MB89371 Dual Serial UART")
mb89371_device::mb89371_device( const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock )
- : device_t(mconfig, MB89371, "MB89371 Dual Serial UART", tag, owner, clock, "mb89371", __FILE__)
+ : device_t(mconfig, MB89371, tag, owner, clock)
{
}
@@ -24,9 +24,11 @@ void mb89371_device::device_start()
WRITE8_MEMBER(mb89371_device::write)
{
+ logerror("MB89371 unimplemented write @%X = %02X & %02X\n", offset, data, mem_mask);
}
READ8_MEMBER(mb89371_device::read)
{
+ logerror("MB89371 unimplemented read @%X & %02X\n", offset, mem_mask);
return 0xff;
}