OpCodeBranchPop.cs 423 B

123456789101112131415
  1. using Ryujinx.Graphics.Shader.Instructions;
  2. using System.Collections.Generic;
  3. namespace Ryujinx.Graphics.Shader.Decoders
  4. {
  5. class OpCodeBranchPop : OpCode
  6. {
  7. public Dictionary<OpCodePush, int> Targets { get; }
  8. public OpCodeBranchPop(InstEmitter emitter, ulong address, long opCode) : base(emitter, address, opCode)
  9. {
  10. Targets = new Dictionary<OpCodePush, int>();
  11. }
  12. }
  13. }