2 * test source file for assembling to a.out
4 * nasm -f aout aouttest.asm
5 * gcc -o aouttest aouttest.c aouttest.o
6 * (assuming your gcc is a.out)
12 extern int lrotate(int32_t, int);
13 extern void greet(void);
14 extern int8_t asmstr
[];
17 extern int integer
, commvar
;
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");
33 printf("These pointers should be equal: %p and %p\n", &greet
, textptr
);
35 printf("So should these: %p and %p\n", selfptr
, &selfptr
);