forked from Mirror/Ryujinx
This repository has been archived on 2024-10-11 . You can view files and clone it, but cannot push or open issues or pull requests.
11 lines
141 B
C#
11 lines
141 B
C#
namespace Spv.Generator
|
||||
{
|
||||
public enum OperandType
|
||||
{
|
||||
Invalid,
|
||||
Number,
|
||||
String,
|
||||
Instruction,
|
||||
}
|
||||
}
|