mirror of
https://github.com/Wack0/IFPSTools.NET.git
synced 2025-06-18 10:45:36 -04:00
24 lines
397 B
C#
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,
|
|
}
|
|
}
|