summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2021-10-19 02:54:16 +1100
committer Robbbert <Robbbert@users.noreply.github.com>2021-10-19 02:54:16 +1100
commit5bea4a62929e67e693c8460341e205f3a60ab1a3 (patch)
tree112cd9058db84638e94f06b811275f6564e75da1 /src/devices
parentec68a94720789279299a27063e350e86b12f86ed (diff)
ra17xx: fixed error message
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/machine/ra17xx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/ra17xx.cpp b/src/devices/machine/ra17xx.cpp
index 3cf2c5775e7..eebdc134727 100644
--- a/src/devices/machine/ra17xx.cpp
+++ b/src/devices/machine/ra17xx.cpp
@@ -104,7 +104,7 @@ void ra17xx_device::io_w(address_space &space, offs_t offset, uint8_t data)
// SOS command
if (m_bl >= 16)
{
- logerror("Attempt to write to nonexistent output %d\n");
+ logerror("Attempt to write to nonexistent output 0x%02X\n",m_bl);
}
else if (data & (1 << 3))
{