Intel-Hex Format
-
Hi All, Is there a dll that deal with Intel-Hex ( http://en.wikipedia.org/wiki/Intel_HEX[^] ) file format? I have 2 hex file (in intel-hex format) and I need to compare them. the output must be the addresses where data differs. Do you know if such a thing already exists? Thanks
-
Hi All, Is there a dll that deal with Intel-Hex ( http://en.wikipedia.org/wiki/Intel_HEX[^] ) file format? I have 2 hex file (in intel-hex format) and I need to compare them. the output must be the addresses where data differs. Do you know if such a thing already exists? Thanks
Not that I know of. From your description, why would you process the file wide respect to byte order? If you're giving an offset into the file where there is a difference the byte order of the data in the file wouldn't make any difference at all.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak -
Not that I know of. From your description, why would you process the file wide respect to byte order? If you're giving an offset into the file where there is a difference the byte order of the data in the file wouldn't make any difference at all.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak -
Not that I know of. From your description, why would you process the file wide respect to byte order? If you're giving an offset into the file where there is a difference the byte order of the data in the file wouldn't make any difference at all.
A guide to posting questions on CodeProject[^]
Dave Kreskowiakobject code file formats such as Intel Hex and Motorola Hex have an address field and some data fields (often worth 16 or 32 bytes) on each of the lines; the data bytes are ordered within each line, the lines themselves can come, and do come, in any order. So one can not simply do a text compare. :)
Luc Pattyn [My Articles] Nil Volentibus Arduum
-
object code file formats such as Intel Hex and Motorola Hex have an address field and some data fields (often worth 16 or 32 bytes) on each of the lines; the data bytes are ordered within each line, the lines themselves can come, and do come, in any order. So one can not simply do a text compare. :)
Luc Pattyn [My Articles] Nil Volentibus Arduum
Yeah, the way he described it, I took the "address where differs" as the offset into the file.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak