You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
204 B
12 lines
204 B
9 years ago
|
#include "common.h"
|
||
|
|
||
|
__attribute__((always_inline))
|
||
|
inline uint32_t __RBIT(uint32_t value)
|
||
|
{
|
||
|
register uint32_t result;
|
||
|
|
||
|
__asm__ volatile("rbit %0, %1" : "=r"(result) : "r"(value));
|
||
|
return (result);
|
||
|
}
|
||
|
|