Previous 199869 Revisions Next

r21896 Saturday 16th March, 2013 at 21:06:33 UTC by hap
i overlooked this one
[src/emu/cpu/m6809]base6x09.ops

trunk/src/emu/cpu/m6809/base6x09.ops
r21895r21896
164164   @m_temp.b.h = read_operand(0);
165165   @m_temp.b.l = read_operand(1);
166166   m_cc &= ~CC_NZC;
167   m_cc |= (m_temp.b.l & 1) ? CC_C : 0;
167   m_cc |= (m_temp.w & 1) ? CC_C : 0;
168168   m_temp.w = set_flags<UINT16>(CC_NZ, ((INT16) m_temp.w) >> 1);
169169   @eat(hd6309_native_mode() ? 0 : 1);
170170   @write_operand(0, m_temp.b.h);

Previous 199869 Revisions Next


© 1997-2024 The MAME Team