testlib.asm
资源名称:nasm-0.98.zip [点击查看]
上传用户:yuppie_zhu
上传日期:2007-01-08
资源大小:535k
文件大小:0k
源码类别:
编译器/解释器
开发平台:
C/C++
- ; program to test retrieval of and linkage to modules in libraries by
- ; ldrdf
- [SECTION .text]
- [GLOBAL _main]
- [EXTERN _strcmp]
- _main:
- push dword string1
- push dword string2
- call _strcmp
- add esp,8 ; doh! clear up stack ;-)
- ret
- [SECTION .data]
- string1: db 'abc',0 ; try changing these strings and see
- string2: db 'abd',0 ; what happens!