21 lines
275 B
C++
21 lines
275 B
C++
|
#include <xvt.h>
|
||
|
|
||
|
#include "tc8.h"
|
||
|
|
||
|
int main(int argc, char** argv)
|
||
|
{
|
||
|
const int op = argc < 2 ? 0 : argv[1][1]-'0';
|
||
|
switch (op)
|
||
|
{
|
||
|
case 0: tc8100(argc,argv); break; // importazione da Semetra
|
||
|
default: tc8100(argc,argv); break;
|
||
|
}
|
||
|
exit(0);
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|