Create RNG module

This commit is contained in:
Camden Dixie O'Brien
2025-10-14 12:06:06 +01:00
parent a698e0af7d
commit 7b31fcfac5
5 changed files with 50 additions and 13 deletions

12
rng.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef RNG_H
#define RNG_H
#include <stdint.h>
void rng_init();
uint32_t rng_uint32();
float rng_canon();
float rng_plusminus();
#endif