2019-11-14 18:20:30 +01:00
|
|
|
using Ryujinx.Graphics.Shader.Instructions;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Shader.Decoders
|
|
|
|
{
|
2021-01-09 02:55:55 +01:00
|
|
|
class OpCodeBranchPop : OpCodeConditional
|
2019-11-14 18:20:30 +01:00
|
|
|
{
|
|
|
|
public Dictionary<OpCodePush, int> Targets { get; }
|
|
|
|
|
2020-10-21 14:13:44 +02:00
|
|
|
public new static OpCode Create(InstEmitter emitter, ulong address, long opCode) => new OpCodeBranchPop(emitter, address, opCode);
|
|
|
|
|
2019-11-14 18:20:30 +01:00
|
|
|
public OpCodeBranchPop(InstEmitter emitter, ulong address, long opCode) : base(emitter, address, opCode)
|
|
|
|
{
|
|
|
|
Targets = new Dictionary<OpCodePush, int>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|