mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-30 08:10:48 -07:00
Get rid of Reflection.Emit dependency on CPU and Shader projects (#1626)
* Get rid of Reflection.Emit dependency on CPU and Shader projects * Remove useless private sets * Missed those due to the alignment
This commit is contained in:
@ -13,6 +13,8 @@ namespace Ryujinx.Graphics.Shader.Decoders
|
||||
public FPHalfSwizzle SwizzleB { get; }
|
||||
public FPHalfSwizzle SwizzleC { get; }
|
||||
|
||||
public new static OpCode Create(InstEmitter emitter, ulong address, long opCode) => new OpCodeHfmaReg(emitter, address, opCode);
|
||||
|
||||
public OpCodeHfmaReg(InstEmitter emitter, ulong address, long opCode) : base(emitter, address, opCode)
|
||||
{
|
||||
Rb = new Register(opCode.Extract(20, 8), RegisterType.Gpr);
|
||||
|
Reference in New Issue
Block a user