• Endian Swap
    Hi, Is there any ARM inline function to switch between Little and Big Endian ? I know the Keil feature to compile the whole code in BE or LE, but i would like any function to swap just some words...
  • Endianess Swapping
    I'm trying to port some code currently being compiled by gcc that uses the __builtin_bswapXX functions. Is there an equivalent in ARM C6 or will I need to provide it myself?
  • swap the nipples
    hai kindly tel me how to swap the nipples.
  • SWAP pointers
    Function does work,like I hoped ... char *swapdata (char *destination, char *SourceLine) { char *temp; temp=SourceLine; SourceLine=destination; destination=temp; printf("in function...
  • Procedure for swapping bits in R0
    Good day! Can someone check my code for mistakes? And, if there are mistakes, help me to fix it. This procedure should swap bits in R0 and be 'effective'. //'n' is bit, that procedure should swap...