OpCodeSync.cs 411 B

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