Emul8.Peripherals.CPU.TranslationCPU.Allocate C# (CSharp) Method

Allocate() private method

private Allocate ( int size ) : IntPtr
size int
return System.IntPtr
        private IntPtr Allocate(int size)
        {
            return memoryManager.Allocate(size);
        }
TranslationCPU