iced is a blazing fast and correct x86 (16/32/64-bit) instruction decoder, disassembler and assembler written in C#.
- π Supports all Intel and AMD instructions
- π Correct: All instructions are tested and iced has been tested against other disassemblers/assemblers (xed, gas, objdump, masm, dumpbin, nasm, ndisasm) and fuzzed
- π 100% C# code
- π The formatter supports masm, nasm, gas (AT&T), Intel (XED) and there are many options to customize the output
- π The decoder decodes >130 MB/s
- π Small decoded instructions, only 40 bytes and the decoder doesn't allocate any memory
- π Create instructions with code assembler, eg. `asm.mov(eax, edx)`
- π The encoder can be used to re-encode decoded instructions at any address
- π API to get instruction info, eg. read/written registers, memory and rflags bits; CPUID feature flag, control flow info, etc
- π Supports `.NET Standard 2.0/2.1+` and `.NET Framework 4.5+`
- π License: MIT