mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-08-01 02:47:11 +02:00
10 lines
145 B
C#
10 lines
145 B
C#
namespace Ryujinx.Cpu.LightningJit.CodeGen
|
|
{
|
|
enum OperandKind
|
|
{
|
|
None,
|
|
Constant,
|
|
Label,
|
|
Register,
|
|
}
|
|
}
|