mirror of
https://github.com/Zypherion-Technologies/UnConfuserEx
synced 2026-06-23 09:25:30 +00:00
13 lines
326 B
C#
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);
|
|
}
|
|
}
|
|
}
|