mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-30 11:10:46 -07:00
Initial work
This commit is contained in:
26
Ryujinx.Graphics.Shader/Decoders/OpCodeHfmaImm2x10.cs
Normal file
26
Ryujinx.Graphics.Shader/Decoders/OpCodeHfmaImm2x10.cs
Normal file
@ -0,0 +1,26 @@
|
||||
using Ryujinx.Graphics.Shader.Instructions;
|
||||
|
||||
namespace Ryujinx.Graphics.Shader.Decoders
|
||||
{
|
||||
class OpCodeHfmaImm2x10 : OpCodeHfma, IOpCodeHfma, IOpCodeImm
|
||||
{
|
||||
public int Immediate { get; }
|
||||
|
||||
public bool NegateB => false;
|
||||
public bool NegateC { get; }
|
||||
public bool Saturate { get; }
|
||||
|
||||
public FPHalfSwizzle SwizzleB => FPHalfSwizzle.FP16;
|
||||
public FPHalfSwizzle SwizzleC { get; }
|
||||
|
||||
public OpCodeHfmaImm2x10(InstEmitter emitter, ulong address, long opCode) : base(emitter, address, opCode)
|
||||
{
|
||||
Immediate = DecoderHelper.Decode2xF10Immediate(opCode);
|
||||
|
||||
NegateC = opCode.Extract(51);
|
||||
Saturate = opCode.Extract(52);
|
||||
|
||||
SwizzleC = (FPHalfSwizzle)opCode.Extract(53, 2);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user