pcb and initial code from https://github.com/das-labor/borgware-2d.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
393 B
22 lines
393 B
/**
|
|
* \author Daniel Otte
|
|
* \date 2008-08-24
|
|
* \license GPLv3 or later
|
|
* \brief random number generator based on noekeon running in CFB-mode
|
|
*
|
|
*/
|
|
|
|
#ifndef PRNG_H_
|
|
#define PRNG_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
uint8_t random8(void);
|
|
void random_block(void* dest);
|
|
void srandom32(uint32_t seed);
|
|
void random_seed(const void* buffer);
|
|
void random_add(const void* buffer);
|
|
|
|
#endif /* PRNG_H_*/
|
|
|
|
|
|
|