If I am using inline asm in functions, like this:
void func(){
__asm{
// asm code
};
};
is it guaranteed that this does not mess up the registries? (As opposed to
using inline asm in middle of C++ code.)
Cristian
void func(){
__asm{
// asm code
};
};
is it guaranteed that this does not mess up the registries? (As opposed to
using inline asm in middle of C++ code.)
Cristian
Comment