Hi, We are trying to call a 'C' function from assembly code and are not terribly successful (i.e won't assemble). Does anyone know how this is done or know of any links to example(s) of how this is done? We are using Keil RealView compiler as well as the ARMASM assembler.
Thanks in advance, Glenn
Yes - functions are automatically "Public" in 'C' - so there is no way (and no need of a way) to "export" them.
The only thing you can do it to make them "Private" if you don't want them to be "Public"...
Thanks everyone.