No, it's far too complicated - and what would be the point?.Hello
Is there any software for converting Assembly language to C_language
Going from HEX to assembler is no problem, the context tells you if it's data or instruction.to reverse engineer software, what else? i've poked around with something similar in the past (actually it was "reverse assembler"), and it wasn't very effective, since reverse assembling from code to assembler can't always tell the difference between instructions and data. it's like translating from chinese to english without knowing grammar.
You will probably have to do it by hand.Hello
Is there any software for converting Assembly language to C_language
But it's not really 'converting' it from assembler to Delphi, it's rewriting the program in Delphi.You will probably have to do it by hand.
I converted a 330,000 line assembly program to Delphi Pascal.
A hell of a task but can be done.
Is this for a microprocessor like a Microchip or Intel type? Are you trying to convert some code written in assembler into C code? If so, go download the chips development tools from the manufacturer and get both the assember and C code compilers. This will allow you to use what is known as "inline assembly" and gradually convert each subroutine into it's C code equivalent.Hello
Is there any software for converting Assembly language to C_language
That is a manual hard way to do it, see post #7 and change "Delphi" to "C". I guess we really need more details. I'm still not sure if they mean ASM or HEX as the source myself.Is this for a microprocessor like a Microchip or Intel type? Are you trying to convert some code written in assembler into C code? If so, go download the chips development tools from the manufacturer and get both the assember and C code compilers. This will allow you to use what is known as "inline assembly" and gradually convert each subroutine into it's C code equivalent.