2008-03-26 14:17:46 +00:00
|
|
|
#include <xvt.h>
|
|
|
|
|
|
|
|
#include "tc8.h"
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
const int op = argc < 2 ? 0 : argv[1][1]-'0';
|
|
|
|
switch (op)
|
|
|
|
{
|
2012-12-04 16:47:36 +00:00
|
|
|
case 1: tc8200(argc,argv); break;
|
|
|
|
default: tc8100(argc,argv); break; // importazione da Semetra
|
2008-03-26 14:17:46 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|