Initial Commit

This commit is contained in:
Sajid
2024-09-30 12:06:17 +06:00
commit db51236165
42 changed files with 4843 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#pragma once
struct CodeCache
{
char* bucket{};
CodeCache();
~CodeCache();
void Init();
void Insert(uint32_t guest, const void* host);
void* Find(uint32_t guest) const;
};
extern CodeCache gCodeCache;