[求助]转换一段汇编从c到汇编nasm
if (a >b)
if (a>c)
return a;
else
return c;
else
if (b>c)
return b;
else
return c;
请问这段如果用nasm汇编写,应该如何写