u32 PRNG_Next(void)
Generates the next pseudo-random number.
void PRNG_Release(void)
Releases the HW entropy sources used to seed the PRNG.
u32 PRNG_Range(u32 min, u32 max)
Generates a pseudo-random number in the given range, inclusive.
@ PRNG_USE_AUTO_SEED
PRNG automatically seeds itself using an hardware entropy source.
void PRNG_Set(u32 seed)
Initializes the PRNG by seeding it with the given seed. Use PRNG_USE_AUTO_SEED to seed it automatical...