summaryrefslogtreecommitdiff
path: root/my-common-code/api-asm.h
blob: b153620785bb97c62c80c05b160f1a4de9e51964 (plain)
1
2
3
4
5
6
7
#include <stdint.h>
/**
 * Reverse bytes in words
 * @param in word in form abcd
 * @returns word in form dcba
 */
uint32_t rev_bytes(uint32_t in);