This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Does it possible to use local C-vars in "#pragma asm" block?

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
...

0