diff options
author | 2019-07-25 18:51:03 +0700 | |
---|---|---|
committer | 2019-07-25 18:51:03 +0700 | |
commit | db0110d12b4f86469cef97753d73597061d2872b (patch) | |
tree | 005e6f8ca6675ba842be061659f298ea2041405f | |
parent | e31685d6b1a1e44e9cf081672a27669ff240f066 (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.cpp | 2 |
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); |