mirror of
https://github.com/par274/sharpemu.git
synced 2026-07-24 19:58:45 +08:00
14 lines
209 B
C#
14 lines
209 B
C#
// Copyright (C) 2026 SharpEmu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
namespace SharpEmu.Core.Cpu;
|
|
|
|
public enum CpuControlTransferKind
|
|
{
|
|
Call = 0,
|
|
|
|
Jump = 1,
|
|
|
|
Return = 2,
|
|
}
|