From 1ab609cc107e0984aa2ebf4c5958172c19aaea8e Mon Sep 17 00:00:00 2001 From: kazblox Date: Mon, 26 Oct 2015 00:43:11 -0400 Subject: [PATCH] nothing to see here; move along --- src/devices/cpu/i86/i86.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/cpu/i86/i86.c b/src/devices/cpu/i86/i86.c index 5921ce3e052..70af764f1a2 100644 --- a/src/devices/cpu/i86/i86.c +++ b/src/devices/cpu/i86/i86.c @@ -1149,7 +1149,7 @@ bool i8086_common_cpu_device::common_op(UINT8 op) // 8086 'invalid opcodes', as documented at http://www.os2museum.com/wp/?p=2147 and tested on real hardware // - 0x60 - 0x6f are aliases to 0x70 - 0x7f. -// - 0xc0, 0xc1, 0xc8, 0xc9 are also aliases where the CPU ignores BIT 1 (*). +// - 0xc0, 0xc1, 0xc8, 0xc9 are also aliases where the CPU ignores BIT 1 (*). // - 0xf1 is an alias to 0xf0. // // Instructions are used in the boot sector for some versions of @@ -2018,7 +2018,7 @@ bool i8086_common_cpu_device::common_op(UINT8 op) case 0xf0: // i_lock - case 0xf1: // 0xf1 is 0xf0; verified on custom hardware + case 0xf1: // 0xf1 is 0xf0; verified on real CPU logerror("%s: %06x: Warning - BUSLOCK\n", tag(), pc()); m_lock = true; m_no_interrupt = 1;