Skip to content
forked from Rprop/LDasm

Lightweight x86 and x64 instructions disassembler

Notifications You must be signed in to change notification settings

EnvyGithub/LDasm

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

LDasm

Lightweight x86 and x64 instructions disassembler, extracted from libsplice project.

Usage

#include <LDasm.h>
unsigned char *pfunc = static_cast<unsigned char *>(evaluate_jmp(__$func__));
uint_fast32_t l = 0;
ldasm_data ld;
do 
{
	l += ldasm(pfunc + l, &ld);
} while (l < __$size__);

About

Lightweight x86 and x64 instructions disassembler

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 100.0%