home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / programs / emulaton / at2600 / !v2600 / h / options < prev    next >
Text File  |  1998-04-07  |  289b  |  20 lines

  1. #ifndef OPTIONS_H
  2. #define OPTIONS_H
  3.  
  4. enum {NTSC=0, PAL=1, SECAM=2};
  5.  
  6. /* Options common to all ports of x2600 */
  7. extern struct BaseOptions {
  8.   int tvtype;
  9.   int lcon;
  10.   int rcon;
  11.   int bank;
  12.   char filename[80];
  13.   int mousey;
  14. } base_opts;
  15.  
  16. int
  17. parse_options(int argc, char **argv);
  18.  
  19. #endif
  20.