All Projects → GabrieleAsaro → Yeet-Emulator

GabrieleAsaro / Yeet-Emulator

Licence: other
🔥 A really basic emulator to understand how IL code works.

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to Yeet-Emulator

nuber
Virtualization management software
Stars: ✭ 33 (-29.79%)
Mutual labels:  virtualization
blog
retrohunblog
Stars: ✭ 46 (-2.13%)
Mutual labels:  virtualization
blogr-pve
Puppet provisioning of HA failover/cluster environment implemented in Proxmox Virtual Environment and Linux boxes.
Stars: ✭ 28 (-40.43%)
Mutual labels:  virtualization
ryzen-hackintosh
My hackintosh files & hardware info 
Stars: ✭ 19 (-59.57%)
Mutual labels:  virtualization
esdc-ce
Danube Cloud :: Community Edition
Stars: ✭ 101 (+114.89%)
Mutual labels:  virtualization
ADLES
Automated Deployment of Lab Environments System (ADLES)
Stars: ✭ 28 (-40.43%)
Mutual labels:  virtualization
open-5g.github.io
Reference website for information on open, programmable, and virtualized 5G networks.
Stars: ✭ 41 (-12.77%)
Mutual labels:  virtualization
vps host server
VPS Hosting Server Daemon for provisioning, monitoring, and communications with the central system.
Stars: ✭ 12 (-74.47%)
Mutual labels:  virtualization
Azote
Fast and lightweight AArch64 disassembler.
Stars: ✭ 24 (-48.94%)
Mutual labels:  opcodes
control-pane
ClonOS WEB control panel (CBSD WEB UI)
Stars: ✭ 112 (+138.3%)
Mutual labels:  virtualization
vue-virtualised
Blazing fast scrolling and updating for any amount of list and hierarchical data.
Stars: ✭ 18 (-61.7%)
Mutual labels:  virtualization
Coyote
Framework providing operating system abstractions and a range of shared networking (RDMA, TCP/IP) and memory services to common modern heterogeneous platforms.
Stars: ✭ 80 (+70.21%)
Mutual labels:  virtualization
ahv
Allows Apple Silicon Hypervisor Framework interactions in a safe manner
Stars: ✭ 50 (+6.38%)
Mutual labels:  virtualization
react-bolivianite-grid
React grid component for virtualized rendering large tabular data.
Stars: ✭ 95 (+102.13%)
Mutual labels:  virtualization
docker-box
Web Interface to manage full blown docker containers and images.
Stars: ✭ 108 (+129.79%)
Mutual labels:  virtualization
community
Community content
Stars: ✭ 29 (-38.3%)
Mutual labels:  virtualization
vagrant-ovirt4
oVirt v4 provider for Vagrant
Stars: ✭ 33 (-29.79%)
Mutual labels:  virtualization
Mail-Toaster-6
Mail Toaster 6
Stars: ✭ 40 (-14.89%)
Mutual labels:  virtualization
Parsable-Instructions
A parsable list of x86 instructions.
Stars: ✭ 24 (-48.94%)
Mutual labels:  opcodes
vic-ui
vSphere Integrated Containers Plug-In for vSphere Client provides information about your VIC setup and allows you to deploy VCHs directly from the vSphere Client.
Stars: ✭ 23 (-51.06%)
Mutual labels:  virtualization

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();
        
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].