»Home
»Examples
»Invocation
»Runtime Library
»Python Bindings
»Known Issues
Shellcode Compiler
A custom shellcode compiler for Binary Ninja
struct type __packed
{
        int member;
        ...
};

The __packed keyword disables alignment restrictions on a structure. No padding will be added between members.

Important Be careful with this keyword on architectures that require aligned memory access.