We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi all.
Does it possible to use local C-vars in "#pragma asm" block? I mean something like this:
void Foo(void) { BYTE t; #pragma asm mov r0, t; // error A45: UNDEFINED SYMBOL ...
In what way do you find the C51 implementation of bit operations ineffective?
Not C51 but limitations of bitwise operations in C (for example, there is no circular shift).
Alex.
Actually, in C51 there is. Go look up _crol_ and friends in the manual.