platotermClassicMac/main.c

40 lines
746 B
C
Executable File

#include "protocol.h"
#include "screen.h"
#include "io.h"
#include "terminal.h"
#include "keyboard.h"
#include "touch.h"
#include "splash.h"
#include "help.h"
#define true 1
#define false 0
unsigned char already_started=false;
unsigned char running=false;
void main(void)
{
screen_init();
/* touch_init(); */
/* help_init(); */
/* NoEcho=padT; */
ShowPLATO(splash,sizeof(splash));
/* NoEcho=padF; */
/* terminal_initial_position(); */
/* io_init(); */
running=true;
/* screen_show_dial(); */
/* screen_greeting(); */
while (running==true)
{
screen_main();
keyboard_main();
io_main();
touch_main();
}
io_done();
touch_done();
screen_done();
}