mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-08-02 03:57:10 +02:00
20 lines
No EOL
637 B
C#
20 lines
No EOL
637 B
C#
namespace Ryujinx.Cpu.LightningJit.Arm32
|
|
{
|
|
readonly struct PendingBranch
|
|
{
|
|
public readonly BranchType BranchType;
|
|
public readonly uint TargetAddress;
|
|
public readonly uint NextAddress;
|
|
public readonly InstName Name;
|
|
public readonly int WriterPointer;
|
|
|
|
public PendingBranch(BranchType branchType, uint targetAddress, uint nextAddress, InstName name, int writerPointer)
|
|
{
|
|
BranchType = branchType;
|
|
TargetAddress = targetAddress;
|
|
NextAddress = nextAddress;
|
|
Name = name;
|
|
WriterPointer = writerPointer;
|
|
}
|
|
}
|
|
} |