How to convert intel hex file to binary code?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jikor
    New Member
    • Mar 2010
    • 4

    How to convert intel hex file to binary code?

    I would like to ask how to convert intel hex file to binary?
    any suggestion?
  • Plater
    Recognized Expert Expert
    • Apr 2007
    • 7872

    #2
    The intel hex file probably looks something like this:
    Code:
    :04000000D9EF21F023
    :08000800046ED8CF05F0E0CF33
    :1000100006F00001E9CF0CF0EACF07F0E1CF08F0DD
    :10002000E2CF09F0D9CF0AF0DACF0BF0F3CF12F01C
    ...
    ...
    You can look up the format of the intel hex file(http://en.wikipedia.org/wiki/Intel_HEX) and figure out what (if anything) you have to do to make a plain sequencial binary file.

    Not sure why you would want to though, wouldn't do you any good I wouldn't think.
    The bulk of the hex file is just dictating what areas of memory have what values on a block device. You would need an emulator of some sort to run it.

    Comment

    Working...