Selaa lähdekoodia

Add emulation for AVR util/parity.h

teensy4-core
PaulStoffregen 10 vuotta sitten
vanhempi
commit
b98d2d6aaf
1 muutettua tiedostoa jossa 13 lisäystä ja 0 poistoa
  1. +13
    -0
      teensy3/util/parity.h

+ 13
- 0
teensy3/util/parity.h Näytä tiedosto

@@ -0,0 +1,13 @@
#ifndef _UTIL_PARITY_H_
#define _UTIL_PARITY_H_

static inline uint8_t parity_even_bit(uint8_t x) __attribute__((pure, always_inline, unused));
static inline uint8_t parity_even_bit(uint8_t x)
{
x ^= x >> 1;
x ^= x >> 2;
x ^= x >> 4;
return x & 1;
}

#endif

Loading…
Peruuta
Tallenna