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.
CubeSatSim/libs/libmf/source/grayenc8.c

25 lines
266 B

#include "libmftypes.h"
#if defined(SDCC)
__reentrantb uint8_t gray_encode8(uint8_t x) __reentrant
{
__asm
mov a,dpl
clr c
rrc a
xrl dpl,a
ret
__endasm;
}
#else
__reentrantb uint8_t gray_encode8(uint8_t x) __reentrant
{
x ^= x >> 1;
return x;
}
#endif

Powered by TurnKey Linux.