mirror of
https://github.com/par274/sharpemu.git
synced 2026-07-16 07:56:12 +08:00
23 lines
560 B
C#
23 lines
560 B
C#
// Copyright (C) 2026 SharpEmu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
using SharpEmu.HLE;
|
|
|
|
namespace SharpEmu.Core.Cpu.Native;
|
|
|
|
public interface INativeCpuBackend
|
|
{
|
|
string BackendName { get; }
|
|
|
|
string? LastError { get; }
|
|
|
|
bool TryExecute(
|
|
CpuContext context,
|
|
ulong entryPoint,
|
|
Generation generation,
|
|
IReadOnlyDictionary<ulong, string> importStubs,
|
|
IReadOnlyDictionary<string, ulong> runtimeSymbols,
|
|
CpuExecutionOptions executionOptions,
|
|
out OrbisGen2Result result);
|
|
}
|