2 * test source file for assembling to Microsoft 16-bit .OBJ
3 * build with (16-bit Microsoft C):
4 * nasm -f obj objtest.asm
5 * cl /AL objtest.obj objlink.c
6 * other compilers should work too, provided they handle large
7 * model in the same way as MS C
12 char text
[] = "hello, world\n";
14 extern void function(char *);
15 extern int bsssym
, commvar
;
17 extern void *selfptr2
;
20 printf("these should be identical: %p, %p\n",
21 (long) selfptr
, (long) &selfptr
);
22 printf("these should be equivalent but different: %p, %p\n",
23 (long) selfptr2
, (long) &selfptr2
);
24 printf("you should see \"hello, world\" twice:\n");
28 printf("this should be 0xF00E: 0x%X\n", bsssym
);
29 printf("this should be 0xD00E: 0x%X\n", commvar
);