asm.rst
changeset 1675 7e5ff3a96f2d
parent 892 9cecee6342a3
child 1682 f24fa90e806b
equal deleted inserted replaced
1674:34357d086f63 1675:7e5ff3a96f2d
       
     1 .. -*- coding: utf-8; -*-
       
     2 .. include:: HEADER.rst
       
     3 
       
     4 ============
       
     5  Assempler.
       
     6 ============
       
     7 .. contents::
       
     8 
       
     9 Decompile binary file.
       
    10 ======================
       
    11 
       
    12 With GNU Binutils::
       
    13 
       
    14   $ objdump -w -d file.o
       
    15 
       
    16 Convert ELF to binary format.
       
    17 =============================
       
    18 ::
       
    19 
       
    20 Convert ELF to Intex hex format.
       
    21 ================================
       
    22 ::
       
    23 
       
    24   $ avr-objcopy -O ihex image.elf image.ihex
       
    25