Facebook
From ja, 7 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 254
  1. global suma
  2. section .text
  3.  
  4. suma:
  5.  
  6. add     edi,esi         ;edi=edi+esi
  7. mov     eax,edi
  8.  
  9. ret
  10.  
  11.  
  12.  
  13. #include <stdio.h>
  14.  
  15. unsigned int x,y,z;
  16.  
  17. int main(void){
  18.  
  19. x=1;
  20. y=2;
  21.  
  22. z=suma(x,y);
  23.  
  24. printf("%d + %d = %d\n",x,y,z);
  25.  
  26. return(0);
  27. }
  28.  
  29.