home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FM Towns: Free Software Collection 3
/
FREEWARE.BIN
/
oh_fm
/
analog
/
djtest.c
< prev
next >
Wrap
Text File
|
1980-01-02
|
284b
|
23 lines
#include <stdio.h>
extern void joy_in_1(int,int *);
extern void joy_in_2(int,int *);
void main()
{
int ch1,ch2,i;
for (i=1;i<1000;++i)
{
joy_in_1(0,&ch1);
joy_in_2(0,&ch2);
printf("joy_in_1 = %X , joy_in_2 = %X \n",ch1,ch2);
};
}