28.2.37 __builtin_lac_16
Description:
Load accumulator with a 16-bit, possibly shifted, value; extending as needed.
Example:
volatile register int Accum asm("A");
int16_t v;
Accum = __builtin_lac_16(v,0);Prototype
int __builtin_lac(int16_t v, int16_t shift);Arguments:
v - value to load into accumulator
shift - literal shift amount
Return Value
The the shifted value v is stored into the accumulator.
Machine Instruction
lacError Messages
If the shift argument is not literal or is out of range, an
error message will be generated.
