2021-09-18 09:52 AM
char shiftdata=8;
shiftdata=_asm("rlc a",shiftdata).
I am trying to rotate left through carry value 8, expecting output of 16.
When I debug the code, I am getting shiftdata value as zero, instead of 16.
Can you help me with this?