Files
UnleashedRecomp-hedge-dev/UnleashedRecomp/cpu/code_cache.h
2024-09-30 13:45:09 +06:00

16 lines
229 B
C

#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;