asm.rst
author Oleksandr Gavenko <gavenkoa@gmail.com>
Mon, 19 Oct 2015 17:04:52 +0300
changeset 1769 cadd23f8127f
parent 1682 f24fa90e806b
child 1905 fba288d59662
permissions -rw-r--r--
http://benchmarksgame.alioth.debian.org/

.. -*- 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