/******************************************************************************* 
**	tt8main.c		Tattletale Model 8 Starter C File 
** 
**	Copyright 1994-2002 ONSET Computer Corp.  All rights reserved. 
*******************************************************************************/ 

#include	<TT8.h>			// Tattletale Model 8 Definitions
#include	<tat332.h>		// 68332 Tattletale (7,8) Hardware Definitions
#include	<sim332.h>		// 68332 System Integration Module Definitions
#include	<qsm332.h>		// 68332 Queued Serial Module Definitions
#include	<tpu332.h>		// 68332 Time Processing Unit Definitions
#include	<dio332.h>		// 68332 Digital I/O Port Pin Definitions
#include	<tt8pic.h>		// Model 8 PIC Parallel Slave Port Definitions

#include	<tt8lib.h>		// definitions and prototypes for Model 8 library
#include	<userio.h>		// common convenient user I/O routines

#include	<assert.h> 
#include	<ctype.h> 
#include	<errno.h> 
#include	<fcntl.h> 
#include	<float.h> 
#include	<limits.h> 
#include	<locale.h> 
#include	<math.h> 
#include	<setjmp.h> 
#include	<sgtty.h> 
#include	<signal.h> 
#include	<stat.h> 
#include	<stdarg.h> 
#include	<stddef.h> 
#include	<stdio.h> 
#include	<stdlib.h> 
#include	<string.h> 
#include	<time.h> 


/******************************************************************************* 
**	main 
*******************************************************************************/ 
void main(void)
	{ 

//
//	STANDARD TATTLETALE MODEL 8 LIBRARY & HARDWARE INITIALIZATION
//
	InitTT8(NO_WATCHDOG, TT8_TPU);	// setup Model 8 for running C programs 

	// Identify the progam and build
	printf("\nProgram: %s: %s %s \n", __FILE__, __DATE__, __TIME__);

	// Show some additional information about the system (see <tt8lib.h)
	InfoTT8(shortDisplay);

	}	// main()

