home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_03 / allison2 / demo.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-26  |  386 b   |  24 lines

  1.  
  2. Listing 2 
  3. DEMO.C
  4. /*  Test Program for Rom Loader */
  5. /* Large model with some far data*/
  6. #include <conio.h>
  7. #include <dos.h>
  8.  
  9. char msg[15] = "Hello World\n\r";
  10. int locint;
  11. int directvideo=1; /*BC direct to hw*/
  12. int far test;
  13. int far test2=0x55aa;
  14. int far * tptr = &test;
  15.  
  16. void main(void)
  17. {
  18. int far * ptr2 = &test;
  19. test = 0x1111;
  20. locint = test+1;
  21.  cputs(msg);
  22. }
  23.  
  24.