IFPSTools.NET/IFPSLib/Emit/AluOpCode.cs
2022-08-07 15:42:41 +01:00

24 lines
397 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace IFPSLib.Emit
{
/// <summary>
/// Type of an ALU operation for the "calculate" instruction at the bytecode level.
/// </summary>
public enum AluOpCode : byte
{
Add,
Sub,
Mul,
Div,
Mod,
Shl,
Shr,
And,
Or,
Xor,
}
}