home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 3 / FREEWARE.BIN / oh_fm / analog / djtest.c < prev    next >
Text File  |  1980-01-02  |  284b  |  23 lines

  1.  
  2. #include <stdio.h>
  3.  
  4.  
  5. extern void joy_in_1(int,int *);
  6. extern void joy_in_2(int,int *);
  7.  
  8. void main()
  9. {
  10. int ch1,ch2,i;
  11.  
  12.  
  13.   for (i=1;i<1000;++i)
  14.   {
  15.     joy_in_1(0,&ch1);
  16.     joy_in_2(0,&ch2);
  17.     printf("joy_in_1 = %X , joy_in_2 = %X \n",ch1,ch2);
  18.   
  19.   
  20.   };
  21.  
  22. }
  23.