We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
How can I pass parameters from C file to assembly file in C167CR.if i call a function(in inline assembly ) from c file and pass parameters then if i use that parameters in assembly how i can alocate the parameters to registers.
The compiler will allocate parameters to registers according to its standard scheme - the "Calling Convention" - as desribed in that section of the User Guide. If you want any code written in one language (eg, assembler) to be callable from another language (eg, 'C'), then you must observe the calling convention of the other language!