summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Patrick Mackinlay <pmackinlay@hotmail.com>2019-07-25 18:51:03 +0700
committer Patrick Mackinlay <pmackinlay@hotmail.com>2019-07-25 18:51:03 +0700
commitdb0110d12b4f86469cef97753d73597061d2872b (patch)
tree005e6f8ca6675ba842be061659f298ea2041405f
parente31685d6b1a1e44e9cf081672a27669ff240f066 (diff)
wd33c93: don't fatalerror (nw)
The SGI 4D/20 boot prom likes to write to the command register immediately after a hard reset (which raises an interrupt), so we can't die here.
-rw-r--r--src/devices/machine/wd33c9x.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/wd33c9x.cpp b/src/devices/machine/wd33c9x.cpp
index 476c6cc913c..f3efe1f1dab 100644
--- a/src/devices/machine/wd33c9x.cpp
+++ b/src/devices/machine/wd33c9x.cpp
@@ -620,7 +620,7 @@ void wd33c9x_base_device::indir_reg_w(uint8_t data)
case COMMAND: {
if (m_regs[AUXILIARY_STATUS] & (AUXILIARY_STATUS_INT | AUXILIARY_STATUS_CIP)) {
- fatalerror("%s: The host should never write to the command register when INT or CIP are set.\n", shortname());
+ logerror("%s: The host should never write to the command register when INT or CIP are set.\n", shortname());
}
const uint8_t cc = (data & COMMAND_CC);