namespace Ryujinx.Graphics.Gpu.Engine.MME { /// /// GPU Macro Arithmetic and Logic unit operation. /// enum AluOperation { AluReg = 0, AddImmediate = 1, BitfieldReplace = 2, BitfieldExtractLslImm = 3, BitfieldExtractLslReg = 4, ReadImmediate = 5 } }