# HG changeset patch # User Oleksandr Gavenko # Date 1422213196 -7200 # Node ID 7e5ff3a96f2dded4083e6895cac642336a738d46 # Parent 34357d086f633d13fdbc1b7d0cc8642c337a5051 Convert ELF to Intex hex format. diff -r 34357d086f63 -r 7e5ff3a96f2d asm.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/asm.rst Sun Jan 25 21:13:16 2015 +0200 @@ -0,0 +1,25 @@ +.. -*- coding: utf-8; -*- +.. include:: HEADER.rst + +============ + Assempler. +============ +.. contents:: + +Decompile binary file. +====================== + +With GNU Binutils:: + + $ objdump -w -d file.o + +Convert ELF to binary format. +============================= +:: + +Convert ELF to Intex hex format. +================================ +:: + + $ avr-objcopy -O ihex image.elf image.ihex + diff -r 34357d086f63 -r 7e5ff3a96f2d disasm.rst --- a/disasm.rst Sun Jan 25 21:13:04 2015 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,6 +0,0 @@ --*- mode: outline; coding: utf-8 -*- - -* objdump. - - $ objdump -w -d file.o -