asm.rst
author Oleksandr Gavenko <gavenkoa@gmail.com>
Mon, 22 Feb 2016 14:21:18 +0200
changeset 1917 d5967d76dae5
parent 1912 8b81a8f0f692
permissions -rw-r--r--
Set initial header level to <h2> explicitly because after removing HEADER.rst top level headers become <h1> and so doesn't properly highlighted.

.. -*- coding: utf-8; -*-

============
 Assempler.
============
.. contents::
   :local:

Decompile binary file.
======================

With GNU Binutils::

  $ objdump -w -d file.o

Convert ELF to binary format.
=============================
::

  $ objcopy -O binary image.elf image.bin

Convert ELF to Intex hex format.
================================
::

  $ avr-objcopy -O ihex image.elf image.ihex