e4c4b79fbe
Files correlati : Ricompilazione Demo : [ ] Commento : Riportata la versione AGA 1.7 patch 335 git-svn-id: svn://10.65.10.50/trunk@10495 c028cbd2-c16b-5b4b-a496-9718f37d4682
21 lines
361 B
C++
Executable File
21 lines
361 B
C++
Executable File
#include <xvt.h>
|
|
#include "ba7.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
const int r = (argc > 1) ? (argv[1][1]-'0') : 0;
|
|
|
|
switch (r)
|
|
{
|
|
case 1:
|
|
ba7200(argc, argv) ; break;
|
|
case 2:
|
|
ba7300(argc, argv) ; break;
|
|
case 0:
|
|
default:
|
|
ba7100(argc, argv) ; break;
|
|
}
|
|
|
|
exit(0);
|
|
return 0;
|
|
} |