/*
 * MAIN.C
 *
 * main-module of semper.prg; calls init-routines and main loops;
 *
 */

/*--- includes              ---*/

#include "import.h"
#include "init.h"
#include "program.h"

#include "export.h"

/*--- defines               ---*/

/*--- types                 ---*/

/*--- variables             ---*/

GLOBAL BYTE compile_date[] = __DATE__ ;

/*--- prototypes            ---*/

/*--- functions             ---*/

/*--------------------------------------------------------------------
 *  main-function of jet_conf;
 *
 *  calls init_jetconfig, switches call-mode and exits after term_jetconfig;
 */
GLOBAL WORD main( VOID )
{
	WORD ok;
	
	ok = prog_init( );
	
	program( );
	
	ok = prog_exit( );
	
	return( ok );
}

