mirror of
https://github.com/par274/sharpemu.git
synced 2026-07-15 23:46:15 +08:00
36 lines
829 B
C#
36 lines
829 B
C#
// Copyright (C) 2026 SharpEmu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
namespace SharpEmu.Core.Cpu;
|
|
|
|
public readonly struct CpuNotImplementedInfo
|
|
{
|
|
public CpuNotImplementedInfo(
|
|
CpuNotImplementedSource source,
|
|
ulong instructionPointer,
|
|
string? nid,
|
|
string? exportName,
|
|
string? libraryName,
|
|
string? detail)
|
|
{
|
|
Source = source;
|
|
InstructionPointer = instructionPointer;
|
|
Nid = nid;
|
|
ExportName = exportName;
|
|
LibraryName = libraryName;
|
|
Detail = detail;
|
|
}
|
|
|
|
public CpuNotImplementedSource Source { get; }
|
|
|
|
public ulong InstructionPointer { get; }
|
|
|
|
public string? Nid { get; }
|
|
|
|
public string? ExportName { get; }
|
|
|
|
public string? LibraryName { get; }
|
|
|
|
public string? Detail { get; }
|
|
}
|