mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-08 08:16:27 +02:00

* Move most of signal handling to Ryujinx.Cpu project * Format whitespace * Remove unused member * Format whitespace * This does not need to be public anymore
8 lines
177 B
C#
8 lines
177 B
C#
namespace ARMeilleure.Memory
|
|
{
|
|
public interface IJitMemoryAllocator
|
|
{
|
|
IJitMemoryBlock Allocate(ulong size);
|
|
IJitMemoryBlock Reserve(ulong size);
|
|
}
|
|
}
|