I found ugly way to access to preallocated SLOCs from inline assembler.
void foo (char a) {
static char bar;
....
__asm
swap _foo_bar_65536_31;
__endasm;
....
}
The problem is that they have some unpredictable numerical indexes at the end.
What is correct way to access local vars (preferable by name) from asm?