rdtlib.asm
上传用户:yuppie_zhu
上传日期:2007-01-08
资源大小:535k
文件大小:1k
源码类别:

编译器/解释器

开发平台:

C/C++

  1. ;; library functions for rdtmain - test of rdx linking and execution
  2. ;; library function = _strcmp, defined as in C
  3. [SECTION .text]
  4. [BITS 32]
  5. [GLOBAL _strcmp]
  6. _strcmp:
  7. push ebp
  8. mov ebp,esp
  9. ;; ebp+8 = first paramater, ebp+12 = second
  10. mov esi,[ebp+8]
  11. mov edi,[ebp+12]
  12. .loop:
  13. mov cl,byte [esi]
  14. mov dl,byte [edi]
  15. cmp cl,dl
  16. jb .below
  17. ja .above
  18. or cl,cl
  19. jz .match
  20. inc esi
  21. inc edi
  22. jmp .loop
  23. .below:
  24. mov eax,-1
  25. pop ebp
  26. ret
  27. .above:
  28. mov eax,1
  29. pop ebp
  30. ret
  31. .match:
  32. xor eax,eax
  33. pop ebp
  34. ret
  35. [SECTION .data]
  36. [GLOBAL _message]
  37. _message: db 'hello',0