matos/core/math.c

10 lines
169 B
C
Raw Normal View History

2019-04-11 22:34:20 +02:00
#include "math.h"
inline uint32_t log2(const uint32_t x)
{
uint32_t y;
// Get the highest set bit
asm("\tbsr %1, %0\n" : "=r"(y) : "r"(x));
return y;
2019-04-11 22:34:20 +02:00
}