mirror of
https://github.com/par274/sharpemu.git
synced 2026-08-01 23:49:44 +08:00
9d88542efd
* Fix virtual memory allocation and access * Update test dependency lock file
12 lines
288 B
C#
12 lines
288 B
C#
// Copyright (C) 2026 SharpEmu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
namespace SharpEmu.HLE;
|
|
|
|
public interface IGuestMemoryAllocator
|
|
{
|
|
bool TryAllocateGuestMemory(ulong size, ulong alignment, out ulong address);
|
|
|
|
bool TryFreeGuestMemory(ulong address);
|
|
}
|