Hi, Can someone tell me how to change the following statement so it can be compliled in VC++?
# define mad_f_mul(x, y) \ ({ mad_fixed64hi_t __hi; \ mad_fixed64lo_t __lo; \ asm ("imull %3" \ : "=a" (__lo), "=d" (__hi) \ : "%a" (x), "rm" (y)); \ mad_f_scale64(__hi, __lo); \ })
Many thanks.