Files
sharpemu/src/SharpEmu.HLE/ICpuMemory.cs
T
ParantezTech 4d73f469bc initial commit
2026-03-11 15:48:28 +03:00

12 lines
284 B
C#

// Copyright (C) 2026 SharpEmu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
namespace SharpEmu.HLE;
public interface ICpuMemory
{
bool TryRead(ulong virtualAddress, Span<byte> destination);
bool TryWrite(ulong virtualAddress, ReadOnlySpan<byte> source);
}