Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
WHOIS 0.65 KB | None | 0 0
  1. Yritys 3:
  2. -----------------
  3.  
  4. LOAD R4, =x
  5. ADD R4, =y
  6. STORE R4, y
  7.  
  8. LOAD R4, =x
  9. ADD R4, =4
  10. STore R4, x
  11.  
  12. LOAD R4, =20
  13. STORE R4, res
  14. PUSH SP, =x
  15. PUSH SP, =y
  16. PUSH SP, =res
  17.  
  18. CALL SP, F
  19.  
  20. POP SP, R4
  21. STORE R4, res
  22.  
  23.  
  24. Yritys 2:
  25. ------------------
  26.  
  27. LOAD R4, =x
  28. ADD R4, =4
  29. PUSH SP, R4
  30.  
  31. LOAD R4, =x
  32. ADD R4, =y
  33. PUSH SP, R4
  34.  
  35. LOAD R4, =20
  36. STORE R4, res
  37. PUSH SP, =res
  38.  
  39. CALL SP, F
  40.  
  41. POP SP, R4
  42. STORE R4, res
  43.  
  44.  
  45. Yritys 1:
  46. -------------------
  47.  
  48. LOAD R4, =x
  49. ADD R4, =4
  50. STORE R4, res
  51. PUSH SP, =res
  52.  
  53. LOAD R4, =x
  54. ADD R4, =y
  55. STORE R4, res
  56. PUSH SP, =res
  57.  
  58. LOAD R4, =20
  59. STORE R4, res
  60. PUSH SP, =res
  61.  
  62. CALL SP, F
  63.  
  64. POP SP, R4
  65. STORE R4, res
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement