campo-sirio/src/ps/ps6215.cpp

15 lines
242 B
C++
Raw Normal View History

#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;
}