15 lines
242 B
C++
15 lines
242 B
C++
|
#include <xvt.h>
|
||
|
#include "ps6215.h"
|
||
|
|
||
|
int main(int argc, char** argv)
|
||
|
{
|
||
|
int rt = -1;
|
||
|
const int r = (argc > 1) ? atoi(&argv[1][1]) : 1;
|
||
|
|
||
|
switch (r)
|
||
|
{
|
||
|
default:
|
||
|
case 0: rt = ps6215100(argc, argv); break; // Configurazione
|
||
|
}
|
||
|
return rt;
|
||
|
}
|