mirror of
https://github.com/par274/sharpemu.git
synced 2026-07-16 07:56:12 +08:00
initial commit
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
// 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);
|
||||
}
|
||||
Reference in New Issue
Block a user