I have a function:

void test (inout uint a)
{
        asm
        {
                mov a, 0x25;
        }
}

The trouble is that the function's call doesn't change the a variable.
Any ideas?

Reply via email to