Latest available version: IDA and decompilers v8.4.240320sp1 see all releases
Hex-Rays logo State-of-the-art binary code analysis tools
email icon
 Action    name: Assemble
 
This command allows you to assemble instructions. Currently, only the IBM PC processors provide an assembler, nonetheless, plugin writers can extend or totally replace the built-in assembler by writing their own.

The assembler requires to enclose all memory references into square brackets. For example:

        mov ax, [counter]
Also, the keyword 'offset' must not be used. Instead of
        mov eax, offset name
you must write
        mov eax, name
See also
         Edit|Patch core submenu.
         How to Enter a Number.
Index | Previous topic | Next topic