C64Lib.Core.MOS6581.sid_random C# (CSharp) Method

sid_random() public static method

public static sid_random ( ) : byte
return byte
        public static byte sid_random()
        {
            seed = seed * 1103515245 + 12345;
            return (byte)(seed >> 16);
        }