#ifndef _PLATFORM_H_ #define _PLATFORM_H_ #include "config.h" #include /* This include file defines prototypes for platform-specific functions. */ void Atari_Initialise(int *argc, char *argv[]); int Atari_Exit(int run_monitor); int Atari_Keyboard(void); void Atari_DisplayScreen(void); int Atari_PORT(int num); int Atari_TRIG(int num); #ifdef SUPPORTS_ATARI_CONFIGINIT /* This function sets the configuration parameters to default values */ void Atari_ConfigInit(void); #endif #ifdef SUPPORTS_ATARI_CONFIGURE /* This procedure processes lines not recognized by RtConfigLoad. */ int Atari_Configure(char *option, char *parameters); #endif #ifdef SUPPORTS_ATARI_CONFIGSAVE /* This function saves additional config lines */ void Atari_ConfigSave(FILE *fp); #endif #endif /* _PLATFORM_H_ */