mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 23:38:39 +00:00
14 lines
397 B
C#
14 lines
397 B
C#
using Ryujinx.Graphics.Shader.Instructions;
|
|
|
|
namespace Ryujinx.Graphics.Shader.Decoders
|
|
{
|
|
class OpCodeFArithImm : OpCodeFArith, IOpCodeImmF
|
|
{
|
|
public float Immediate { get; }
|
|
|
|
public OpCodeFArithImm(InstEmitter emitter, ulong address, long opCode) : base(emitter, address, opCode)
|
|
{
|
|
Immediate = DecoderHelper.DecodeF20Immediate(opCode);
|
|
}
|
|
}
|
|
} |