| 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 |
| r23559 | r23560 | |
|---|---|---|
| 490 | 490 | case 2: //sigma (accumulative multiplication) |
| 491 | 491 | case 3: |
| 492 | 492 | UINT64 acum = (INT16)m_math_a * (INT16)m_math_b; |
| 493 | UINT64 mask = | |
| 493 | UINT64 mask = U64(0xffffffffff); | |
| 494 | 494 | m_math_res += acum; |
| 495 | 495 | m_math_overflow = (m_math_res > mask) ? 0x80 : 0; |
| 496 | 496 | m_math_res &= mask; |
| Previous | 199869 Revisions | Next |