| 1778 | |
| 1779 | static uae_u32 xorshiftstate, xorshiftstate_prev; |
| 1780 | static uae_u32 xorshift32(void) |
| 1781 | { |
| 1782 | uae_u32 x = xorshiftstate; |
| 1783 | x ^= x << 13; |
| 1784 | x ^= x >> 17; |
| 1785 | x ^= x << 5; |
| 1786 | xorshiftstate = x; |
| 1787 | return xorshiftstate; |
| 1788 | } |
| 1789 | |
| 1790 | static int rand16_cnt, rand16_cnt_prev; |
| 1791 | static uae_u16 rand16(void) |
no outgoing calls
no test coverage detected