MCUME/MCUME_teensy41/teensyaiie/lcg.h
2022-02-06 21:48:25 +01:00

17 lines
176 B
C++
Executable file

#ifndef __LCG_H
#define __LCG_H
#include <stdint.h>
class LCG {
public:
LCG(uint16_t s);
void srnd(uint16_t s);
uint8_t rnd();
private:
uint16_t seed;
};
#endif