removed QWQNG, added stdin

This commit is contained in:
randogoth 2024-03-02 17:58:28 +02:00
commit 0fe369bc5a
39 changed files with 3095 additions and 0 deletions

21
RandTest/MonkeyBitmap.h Executable file
View file

@ -0,0 +1,21 @@
#pragma once
#pragma warning( disable : 4005 )
#include <stdint.h>
#pragma warning( default : 4005 )
class CMonkeyBitmap
{
public:
CMonkeyBitmap(void);
~CMonkeyBitmap(void);
// Sets the entire bit memory map to 0's
void Clearmap(void);
// Check in Bitmap if this word has already been used, true if tested previously, false otherwise;
bool CheckWord(uint32_t Word20Bit);
protected:
// Bitmap
uint32_t Word[32768];
};