diff options
author | 2019-10-11 21:50:10 +0200 | |
---|---|---|
committer | 2019-10-24 11:33:30 +0200 | |
commit | 82756fdff8659d2bc9c88d669e7cea6258bd766b (patch) | |
tree | d486514ee1ae7f91a3688e5e3eea62a39e756c57 | |
parent | ddcd5eb92a28caffab5ab0ba00592c41b00b74cb (diff) |
i86.cpp: disabled warning when executing lock (0xf0) instruction, why warn at all?
-rw-r--r-- | src/devices/cpu/i86/i86.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/i86/i86.cpp b/src/devices/cpu/i86/i86.cpp index 619171b9cef..c6eca719146 100644 --- a/src/devices/cpu/i86/i86.cpp +++ b/src/devices/cpu/i86/i86.cpp @@ -2156,7 +2156,7 @@ bool i8086_common_cpu_device::common_op(uint8_t op) case 0xf0: // i_lock case 0xf1: // 0xf1 is 0xf0; verified on real CPU - logerror("%06x: Warning - BUSLOCK\n", m_pc); + //logerror("%06x: Warning - BUSLOCK\n", m_pc); // Why warn for using lock instruction? m_lock = true; m_no_interrupt = 1; CLK(NOP); |