Previous 199869 Revisions Next

r23560 Sunday 9th June, 2013 at 10:48:40 UTC by Miodrag Milanović
this should fix compile on 32bit (nw)
[src/mess/machine]sns_sa1.c

trunk/src/mess/machine/sns_sa1.c
r23559r23560
490490            case 2: //sigma (accumulative multiplication)
491491            case 3:
492492               UINT64 acum = (INT16)m_math_a * (INT16)m_math_b;
493               UINT64 mask = (UINT64)0xffffffffff;
493               UINT64 mask = U64(0xffffffffff);
494494               m_math_res += acum;
495495               m_math_overflow = (m_math_res > mask) ? 0x80 : 0;
496496               m_math_res &= mask;

Previous 199869 Revisions Next


© 1997-2024 The MAME Team