Cycle LFSR on mix

This commit is contained in:
Matthias Schiffer 2013-03-15 15:34:52 +01:00
parent 529c34efef
commit a5ba3499fb

View file

@ -47,6 +47,7 @@ static uint16_t rand(void) {
static void rand_mix(uint16_t mix) {
lfsr ^= mix;
rand();
}
static void rand_q(void) {