Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 1.32 KB

README.md

File metadata and controls

50 lines (36 loc) · 1.32 KB

Yeet Emulator

Contribution guide    Twitter    Discord    Telegram   


Built with ❤︎ by NotAccursed


Yeet Emulator MIT license

📜 Why do you need Yeet Emulator

You can easily understand how to make a virtualization like Eazfuscator.

💥 What does it do

  • Emulate IL Code
  • Easy to add more functions
  • Easy to understand

Example

private static void Main(string[] args) {

    List<Instruction> instruction = new List<Instruction>
	{
	    new Instruction(OpCodesL.Ldc, 4),
	    new Instruction(OpCodesL.Ldc, 2),
	    new Instruction(OpCodesL.Add),
	    new Instruction(OpCodesL.Ret)
	};

        Core core = new Core(instruction);

        Console.WriteLine(core.Execute());
        Console.ReadLine();
        
}