home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJTST200.ZIP / tests / libc / crt0 / dosds.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-07  |  231 b   |  17 lines

  1. #include <stdio.h>
  2. #include <go32.h>
  3. #include <sys/farptr.h>
  4.  
  5. int
  6. main(void)
  7. {
  8.   int i;
  9.   for (i=0xfff0; i<0x1000f; i++)
  10.   {
  11.     printf("%08x\n", i);
  12.     fflush(stdout);
  13.     _farpeekb(_dos_ds, i);
  14.   }
  15.   return 0;
  16. }
  17.