mario::konrad
programming / C++ / sailing / nerd stuff
ihexdump
© 2005-01-01 / Mario Konrad
Tool for dumping contents of Intel ihex files.

Description

For a developer of embedded software, the Intel HEX format files are not unknown. This tool read an ihex file and dumps the data has hex numbers, ordered by ascending memory addresses.

NOTE: this software is obsolete, you may want to use ihex.

Usage

Dump the file test.ihex:

$ ihexdump test.ihex

Download

All source code provided by this page is distributed under the terms of the GPL.

Use this software on your own risk.

Build

The source is in ANSI-C++, therefore it should not be a problem to build it. For example, using the GCC:

$ gcc -o ihexdump ihexdump.cpp

should do the job. Cygwin users may use:

$ gcc -o ihexdump ihexdump.cpp -lstdc++