This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

C to Assembly Converter

I am using Keil uVision4 with an STM32VL Discovery board with an onboard ARM chip. I am wondering if their is anyway inside of Keil uVision4 to convert some C code I have for am external peripheral to ARM Assembly language.

Thanks in advance... I hope this is enough information.

Parents
  • If you have a project written in assembler, that assembler code will probably use its own rules for parameter passing etc, than what the compiler will create.

    Now why would you want to use something different? There is a perfectly good calling convention created/recommended/supported by ARM. It's very well documented and a basic appreciation of it is incredibly useful for someone who wishes to understand the assembler/compiler.

Reply
  • If you have a project written in assembler, that assembler code will probably use its own rules for parameter passing etc, than what the compiler will create.

    Now why would you want to use something different? There is a perfectly good calling convention created/recommended/supported by ARM. It's very well documented and a basic appreciation of it is incredibly useful for someone who wishes to understand the assembler/compiler.

Children