Look:
Code:
int main()
{
    unsigned char buf[]={0xB8,0x10,0x00};
   __asm    
        {       
            jmp buf
        }                
    
    return 0;
}
I assigned assembler codes into array buf,and I want to call the codes,
when I compile it,the statement jmp buf display error: illegal size for operand和illegal instruction size,
who could help me how to call it?