asm.rst
author Oleksandr Gavenko <gavenkoa@gmail.com>
Thu, 12 Feb 2015 19:23:13 +0200
changeset 1682 f24fa90e806b
parent 1675 7e5ff3a96f2d
child 1905 fba288d59662
permissions -rw-r--r--
Convert ELF to binary format.

.. -*- coding: utf-8; -*-
.. include:: HEADER.rst

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

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