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/signext16.c

26 lines
270 B

#include "libmftypes.h"
#if defined(SDCC)
__reentrantb int32_t signextend16(int16_t x) __reentrant __naked
{
x;
__asm;
mov a,dph
rlc a
subb a,acc
mov b,a
ret
__endasm;
}
#else
__reentrantb int32_t signextend16(int16_t x) __reentrant
{
return x;
}
#endif

Powered by TurnKey Linux.