testlib.asm
Upload User: yuppie_zhu
Upload Date: 2007-01-08
Package Size: 535k
Code Size: 0k
Development Platform:

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!