Suma con Ensamblador en C++ compilando con Turbo ++


/ Published in: C++
Save to your folder(s)



Copy this code and paste it in your HTML
  1. #include <stdio.h>
  2. #include <conio.h>
  3. #include <string.h>
  4. #include <iostream.h>
  5. #include <math.h>
  6. #include <ctype.h>
  7.  
  8.  
  9. void main()
  10. {
  11. int dato1, dato2, resultado;
  12.  
  13. dato1=42;
  14. dato2=1;
  15.  
  16. //Ricky Afeminado
  17.  
  18. asm {
  19. push ax;
  20. push cx;
  21. mov cx,dato2
  22. mov ax,dato1
  23. add ax,cx
  24. mov resultado,ax;
  25. pop cx;
  26. pop ax;
  27. }
  28. printf("La suma de %d+%d es = a: %d",dato1,dato2,resultado);
  29. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.