Guest User

Untitled

a guest
Aug 17th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. start:
  2.       xor   edx,edx           ;sum
  3.  
  4.       mov   eax,3
  5.    .while eax < 1000
  6.       add   edx,eax
  7.       add   eax,3
  8.    .endw
  9.  
  10.       mov   eax,5
  11.    .while eax < 1000
  12.       add   edx,eax
  13.       add   eax,15
  14.    .endw
  15.  
  16.       mov   eax,10
  17.    .while eax < 1000
  18.       add   edx,eax
  19.       add   eax,15
  20.    .endw
Add Comment
Please, Sign In to add comment