Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
elftest.c
Package: nasm-0.98.zip [view]
Upload User: yuppie_zhu
Upload Date: 2007-01-08
Package Size: 535k
Code Size: 1k
Category:
Compiler program
Development Platform:
C/C++
- /*
- * test source file for assembling to ELF
- * build with:
- * nasm -f elf elftest.asm
- * gcc -o elftest elftest.c elftest.o
- * (assuming your gcc is ELF)
- */
- #include <stdio.h>
- extern int lrotate(long, int);
- extern void greet(void);
- extern char asmstr[];
- extern void *selfptr;
- extern void *textptr;
- extern int integer, commvar;
- int main(void) {
- printf("Testing lrotate: should get 0x00400000, 0x00000001n");
- printf("lrotate(0x00040000, 4) = 0x%08lxn", lrotate(0x40000,4));
- printf("lrotate(0x00040000, 14) = 0x%08lxn", lrotate(0x40000,14));
- printf("This string should read `hello, world': `%s'n", asmstr);
- printf("The integers here should be 1234, 1235 and 4321:n");
- integer = 1234;
- commvar = 4321;
- greet();
- printf("These pointers should be equal: %p and %pn",
- &greet, textptr);
- printf("So should these: %p and %pn", selfptr, &selfptr);
- }