Merge remote-tracking branch 'Kernel/multiboot2_64' into Kernel-multiboot2_64

This commit is contained in:
EnderIce2
2024-11-20 05:17:14 +02:00
291 changed files with 54773 additions and 0 deletions

14
Kernel/include/rand.hpp Normal file
View File

@@ -0,0 +1,14 @@
#ifndef __FENNIX_KERNEL_RANDOM_H__
#define __FENNIX_KERNEL_RANDOM_H__
#include <types.h>
namespace Random
{
uint16_t rand16();
uint32_t rand32();
uint64_t rand64();
void ChangeSeed(uint64_t CustomSeed);
}
#endif // !__FENNIX_KERNEL_RANDOM_H__