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