put legic back in the system and add rumpletux's fast legic / prng code from forum

This commit is contained in:
adam@algroup.co.uk 2010-02-05 08:18:02 +00:00
commit 8e220a9126
8 changed files with 163 additions and 88 deletions

5
include/legic_prng.h Normal file
View file

@ -0,0 +1,5 @@
#include "unistd.h"
#include "stdint.h"
extern void legic_prng_init(uint8_t init);
extern void legic_prng_forward(int count);
extern uint8_t legic_prng_get_bit();