mirror of
https://github.com/MadMin3r/UnconfuserEx
synced 2026-06-23 09:25:19 +00:00
17 lines
310 B
C#
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);
|
|
}
|
|
}
|
|
}
|