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
;
21 printf("these should be identical: %p, %p\n",
22 (long)selfptr
, (long)&selfptr
);
23 printf("these should be equivalent but different: %p, %p\n",
24 (long)selfptr2
, (long)&selfptr2
);
25 printf("you should see \"hello, world\" twice:\n");
29 printf("this should be 0xF00E: 0x%X\n", bsssym
);
30 printf("this should be 0xD00E: 0x%X\n", commvar
);