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

编译器/解释器

开发平台:

C/C++

  1. ; program to test retrieval of and linkage to modules in libraries by
  2. ; ldrdf
  3. [SECTION .text]
  4. [GLOBAL _main]
  5. [EXTERN _strcmp]
  6. _main:
  7. push dword string1
  8. push dword string2
  9. call _strcmp
  10. add esp,8 ; doh! clear up stack ;-)
  11. ret
  12. [SECTION .data]
  13. string1: db 'abc',0 ; try changing these strings and see
  14. string2: db 'abd',0 ; what happens!