We can use stuff like this in visual studio:
__asm
{
mov x1,offset thunk_begin;
mov x2,offset thunk_end;
}
But as quoted from here:
Since Visual Studio does not recognize assembly code, Visual Studio will have to be told what program to call to compile the assembly code.
I'm really confused.