Files
Zypherion-Technologies-UnCo…/MSILEmulator/Instructions/Branch/Beq.cs
T
Adam - Zyph. Tech. e56a256c7b Add files via upload
2026-06-17 19:00:04 +02:00

13 lines
326 B
C#

using dnlib.DotNet.Emit;
namespace MSILEmulator.Instructions.Branch
{
internal class Beq
{
public static int Emulate(Context ctx, Instruction instr)
{
return BranchCompare.Emulate(ctx, instr, static (left, right) => left == right, static (left, right) => left == right);
}
}
}