NASM-2.09.10
[nasm.git] / test / aouttest.c
blob2514ce1a92a7d84ade66cbcf3682c5b527ee3702
1 /*
2 * test source file for assembling to a.out
3 * build with:
4 * nasm -f aout aouttest.asm
5 * gcc -o aouttest aouttest.c aouttest.o
6 * (assuming your gcc is a.out)
7 */
9 #include <stdio.h>
10 #include <inttypes.h>
12 extern int lrotate(int32_t, int);
13 extern void greet(void);
14 extern int8_t asmstr[];
15 extern void *selfptr;
16 extern void *textptr;
17 extern int integer, commvar;
19 int main(void)
22 printf("Testing lrotate: should get 0x00400000, 0x00000001\n");
23 printf("lrotate(0x00040000, 4) = 0x%08lx\n", lrotate(0x40000, 4));
24 printf("lrotate(0x00040000, 14) = 0x%08lx\n", lrotate(0x40000, 14));
26 printf("This string should read `hello, world': `%s'\n", asmstr);
28 printf("The integers here should be 1234, 1235 and 4321:\n");
29 integer = 1234;
30 commvar = 4321;
31 greet();
33 printf("These pointers should be equal: %p and %p\n", &greet, textptr);
35 printf("So should these: %p and %p\n", selfptr, &selfptr);