28.2.145 __builtin_write_ACCL
Architecture
dsPIC33A
Description
Write a value to the low part of an accumulator. If loading the entire accumulator,
__builtin_lac
or __builtin_write_ACCH
should be
executed first.
Example:
volatile register int Accum asm("A");
int value;
Accum = __builtin_write_ACCL(value);
Prototype
int __builtin_write_ACCL(int value);
Arguments
value
- value to write
Return Value
Accumulator is updated by writing to the low part of the accumulator.
Machine Instruction
llac.l
Error Messages
None.