diff --git a/src/devices/sound/saa1099.cpp b/src/devices/sound/saa1099.cpp index 705fab69d29..3c9b334b46f 100644 --- a/src/devices/sound/saa1099.cpp +++ b/src/devices/sound/saa1099.cpp @@ -63,6 +63,8 @@ 0x1c | ---- ---x | All channels enable (0 = off, 1 = on) 0x1c | ---- --x- | Synch & Reset generators + Unspecified bits should be written as zero. + ***************************************************************************/ #include "emu.h" @@ -442,7 +444,8 @@ WRITE8_MEMBER( saa1099_device::data_w ) } break; default: /* Error! */ - logerror("%s: (SAA1099 '%s') Unknown operation (reg:%02x, data:%02x)\n", machine().describe_context(), tag(), reg, data); + if (data != 0) + logerror("%s: (SAA1099 '%s') Unknown operation (reg:%02x, data:%02x)\n", machine().describe_context(), tag(), reg, data); } }