Kernel: Implement super simple PRNG

This commit is contained in:
2024-02-12 04:25:06 +02:00
parent ff49d8b84f
commit b45d27593f
4 changed files with 65 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#pragma once
#include <stdint.h>
namespace Kernel
{
class Random
{
public:
static void initialize();
static uint32_t get_u32();
static uint64_t get_u64();
};
}