home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / programs / emulaton / at2600 / !v2600 / h / display < prev    next >
Text File  |  1997-03-24  |  1KB  |  41 lines

  1. /*****************************************************************************
  2.  
  3.    This file is part of x2600, the Atari 2600 Emulator
  4.    ===================================================
  5.    
  6.    Copyright 1996 Alex Hornby. For contributions see the file CREDITS.
  7.  
  8.    This software is distributed under the terms of the GNU General Public
  9.    License. This is free software with ABSOLUTELY NO WARRANTY.
  10.    
  11.    See the file COPYING for details.
  12.    
  13.    $Id: display.h,v 1.11 1996/08/24 19:00:26 ahornby Exp $
  14. ******************************************************************************/
  15.  
  16. /*
  17.   Defines for the X11 display code.
  18.   */
  19.  
  20. #ifndef DISPLAY_H
  21. #define DISPLAY_H
  22.  
  23. int fselLoad(void);
  24. void rate_update(void);
  25. void tv_off(void);
  26. int tv_on(int argc, char **argv);
  27. void tv_event(void);
  28. void tv_display(void);
  29. void tv_putpixel(int x, int y, BYTE value);
  30. extern BYTE tv_color(BYTE b);
  31. extern int redraw_flag;
  32.  
  33. extern BYTE *vscreen;
  34. extern int vwidth,vheight,theight;
  35. extern int tv_counter;
  36. #endif
  37.  
  38.  
  39.  
  40.  
  41.