Start of MSL instructions

Remaining functions
This commit is contained in:
Isaac Marovitz 2023-08-03 11:51:11 -04:00 committed by Isaac Marovitz
parent 27effab989
commit 4ec37d1798
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;
}
}
}