Home
last modified time | relevance | path

Searched defs:CRCConfig (Results 1 – 1 of 1) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DCRCEngine.cs151 public struct CRCConfig struct
153 public CRCConfig(uint polynomial, int width, bool reflectInput, bool reflectOutput, in CRCConfig() method
159 public CRCConfig(CRCPolynomial crcPolynomial, bool reflectInput, bool reflectOutput, in CRCConfig() method
171 public CRCPolynomial CRCPolynomial { get; }
172 public bool ReflectInput { get; }
173 public bool ReflectOutput { get; }
174 public uint Init { get; }
175 public uint XorOutput { get; }
177 public uint Polynomial => CRCPolynomial.Polynomial;
179 public int Width => CRCPolynomial.Width;
[all …]