Files
MadMin3r-UnconfuserEx/MSILEmulator/Instructions/Load/LdcI4_M1.cs
T
2023-03-01 23:18:47 +00:00

17 lines
310 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MSILEmulator.Instructions.Load
{
internal class LdcI4_M1
{
public static void Emulate(Context ctx)
{
ctx.Stack.Push((int)-1);
}
}
}