Coriic

Untitled

May 31st, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. .text
  2. .type range, @function
  3. .global range
  4.  
  5. #x->a->b->c
  6.  
  7. range:
  8. CMP %rsi, %rdi
  9. JL zero
  10. CMP %rsi, %rdx
  11. JL one
  12. CMP %rsi, %rcx
  13. JL two
  14. JMP three
  15.  
  16. zero:
  17. MOV $0, %rax
  18. RET
  19.  
  20. one:
  21. MOV $1, %rax
  22. RET
  23.  
  24. two:
  25. MOV $2, %rax
  26. RET
  27.  
  28. three:
  29. MOV $3, %rax
  30. RET
Add Comment
Please, Sign In to add comment