comparison blastem.h @ 1111:2eb54e24914e

Mostly working changes to allow support for multiple emulated system types in main blastem program
author Michael Pavone <pavone@retrodev.com>
date Mon, 19 Dec 2016 13:28:18 -0800
parents 22e87b739ad6
children 2540c05520f2
comparison
equal deleted inserted replaced
1110:d1eed3b1121c 1111:2eb54e24914e
1 #ifndef BLASTEM_H_ 1 #ifndef BLASTEM_H_
2 #define BLASTEM_H_ 2 #define BLASTEM_H_
3 3
4 #include "tern.h" 4 #include "tern.h"
5 #include "system.h"
5 6
6 extern int headless; 7 extern int headless;
7 extern int exit_after; 8 extern int exit_after;
8 extern int z80_enabled; 9 extern int z80_enabled;
9 extern int frame_limit; 10 extern int frame_limit;
10 11
11 extern tern_node * config; 12 extern tern_node * config;
13 extern system_header *current_system;
12 14
13 extern char *save_state_path; 15 extern char *save_state_path;
16 extern char *save_filename;
14 #define QUICK_SAVE_SLOT 10 17 #define QUICK_SAVE_SLOT 10
15 18
16 #endif //BLASTEM_H_ 19 #endif //BLASTEM_H_