Advertisement
qradmanq

lab1 a

Sep 15th, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. %include "io.inc"
  2.  
  3. section .text
  4. global CMAIN
  5. section .data
  6. x dw 4, 3, 1, 2, 3
  7. max dw 0
  8. cons dw 0
  9. CMAIN:
  10. mov eax, [x]
  11. mov ebx, [x+2]
  12. L3:
  13.  
  14. mov edx, [ebx]
  15. cmp [max], edx
  16. JG L1
  17. MOV [max], edx
  18. L1:
  19.  
  20. sub eax, 1
  21. add ebx, ebx, 2
  22. cmp 0, eax
  23. JNE L3
  24. ret
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement