Topic : Reading HEX code using Disassembly View

Forum : Ride IDE

Original Post
Post Information Post
November 18, 2010 - 12:21pm
Guest

Controller - ST29F561K9
IDE - RIDE7 7.30.10.0159

We have the HEX code of our product, but we were confused with the Source Code Version.
So, we are trying to read the HEX code using Disassembly view in Ride 7.

Part of the code has been converted to Assembly Language
but another part is still in Hex format.

Is there any way or any points to be noted before using Disassembly view,so that I can get the Assembly Language of th entire code.

Replies
Post Information Post
+1
0
-1
November 18, 2010 - 5:23pm
Raisonance Support Team

Hi,

Re-assembling code retrieved from the disassembly windows should work. However, you may have some issues such as the pointer size attributes.
For example, "LD A, [20]" can be "LD A, [20.b]" or "LD A, [20.w]", which the disassembler will not explicitly produce. There may be other issues, but I do not have them on the top of my head.

Let us know if you succeed in your conversion, and if you found any issues.
Regards,

+1
0
-1
November 19, 2010 - 9:42am
Guest

Thanks Bruno