Tscope5
display1.c

basic display operations

#include <tscope5.h>
int main()
{
int i;
for (i=9; i>=1; i--) {
ts5_printf(0.0, 0.0, "%d", i);
ts5_wait(1.0);
}
return 0;
}