home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Between Heaven & Hell 2
/
BetweenHeavenHell.cdr
/
500
/
470
/
rccl087
< prev
next >
Wrap
Text File
|
1987-03-02
|
456b
|
33 lines
#include "../h/rtc.h"
extern struct how how;
main()
{
int i;
extern int terminate;
int dummy(), back();
stepmode();
control(dummy, dummy);
while(!terminate) {
adcopen(7);
adcopen(8);
adcopen(9);
adcopen(10);
adcopen(11);
adcopen(12);
adcopen(13);
adcopen(14);
adcopen(15);
for (i = 0; i < ADC; ++i) {
printf(" %d", how.adcr[i]);
}
printf("\n");
}
release("------------");
}
dummy(){}