Create functionally equivalent C for handwritten RNG functions

This commit is contained in:
Ryan Dwyer
2022-11-18 22:30:06 +10:00
parent 1c7dc246f5
commit 1b0e512e2a
10 changed files with 57 additions and 7 deletions
-1
View File
@@ -5,7 +5,6 @@
#include "types.h"
u32 random(void);
void rngSetSeed(u32 seed);
u32 rngRotateSeed(u64 *value);
#endif