home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Emulation / Atari800 / platform.h < prev    next >
C/C++ Source or Header  |  1997-04-03  |  500b  |  22 lines

  1. #ifndef __PLATFORM__
  2. #define __PLATFORM__
  3.  
  4. /*
  5.  * This include file defines prototypes for platforms specific functions.
  6.  */
  7.  
  8. void Atari_Initialise (int *argc, char *argv[]);
  9. int Atari_Exit (int run_monitor);
  10. int Atari_Keyboard (void);
  11. void Atari_DisplayScreen (UBYTE *screen);
  12.  
  13. int Atari_PORT (int num);
  14. int Atari_TRIG (int num);
  15. int Atari_POT (int num);
  16. int Atari_CONSOL (void);
  17. void Atari_AUDC (int channel, int byte);
  18. void Atari_AUDF (int channel, int byte);
  19. void Atari_AUDCTL (int byte);
  20.  
  21. #endif
  22.