Start of MSL instructions

Remaining functions
This commit is contained in:
Isaac Marovitz
2023-08-03 11:51:11 -04:00
committed by Evan Husted
parent a7908c187d
commit a8b4e643d0
3 changed files with 188 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
namespace Ryujinx.Graphics.Shader.CodeGen.Msl.Instructions
{
readonly struct InstInfo
{
public InstType Type { get; }
public string OpName { get; }
public InstInfo(InstType type, string opName)
{
Type = type;
OpName = opName;
}
}
}