• passing array to inline assembly
    i am sending details of my problem,i want to send array values stored in c function to inline assembly created in separate file .i have array declared in main file as extern like below extern unsigned...
  • passing values in perticular registers
    How to pass values in perticular register? I am using 89v51rd2 & want to pass values in R1 and DPTR for IAP.
  • Pass in an immediate value to an inline assembly function
    Note: This was originally posted on 6th March 2009 at http://forums.arm.com Hi, I would like to pass in an immediate value to an inline assembly function, such as in this example: inline int foo(int a...
  • Passing 2-D array
    I want to pass a 2-D array from one function to another function. I wrote the program but sometimes i get wrong values. float Arr[81][10]; void Monitor_Slot1(void) { if(Slot_1 == 0) { Dev_Curr...
  • Pass 1 dimensional array in function
    Passing any arrays by value or pointer does not work very well. I can try integrating an array into a structure, but that is not how I would do it. if I have: frame( unsigned char &mbrtubuf,...