Added non-working yet Atari800 port

This commit is contained in:
pelya
2010-10-04 18:16:21 +03:00
parent d85b547bad
commit 825647a80b
100 changed files with 64806 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#ifndef CFG_H_
#define CFG_H_
/* Checks for "popular" filenames of ROM images in the specified directory
and sets CFG_*_filename to the ones found.
If only_if_not_set is TRUE, then CFG_*_filename is modified only when
Util_filenamenotset() is TRUE for it. */
void CFG_FindROMImages(const char *directory, int only_if_not_set);
/* Load Atari800 text configuration file. */
int CFG_LoadConfig(const char *alternate_config_filename);
/* Writes Atari800 text configuration file. */
int CFG_WriteConfig(void);
/* Paths to ROM images. */
extern char CFG_osa_filename[FILENAME_MAX];
extern char CFG_osb_filename[FILENAME_MAX];
extern char CFG_xlxe_filename[FILENAME_MAX];
extern char CFG_5200_filename[FILENAME_MAX];
extern char CFG_basic_filename[FILENAME_MAX];
#endif /* CFG_H_ */