我第一次在c中嵌入了汇编,兴奋!

 #include "stdio.h"
#include "conio.h"

int min(int v1,int v2)
{
 _asm {
  mov eax,dword ptr v1; 

cmp eax,dword ptr v2;
  jle minexit;
  mov eax,dword ptr v2; 
minexit:
 }
 //默认返回eax
}

main()
{

printf("min(10,3) is %d/nmin(34,552) is %d",min(10,3),min(34,552));


getch();
}

虽然懂得不多,但这只是开始

 

---------N久之前的冲动

 

其实,更多的是用c调用汇编或用汇编调用c[2009-1-22]

你可能感兴趣的:(c,汇编,include)