Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/libsnes/bsnes/snes/config/config.hpp
2 views
1
struct Configuration {
2
Input::Device controller_port1;
3
Input::Device controller_port2;
4
System::ExpansionPortDevice expansion_port;
5
System::Region region;
6
bool random;
7
8
struct CPU {
9
unsigned version;
10
unsigned ntsc_frequency;
11
unsigned pal_frequency;
12
unsigned wram_init_value;
13
} cpu;
14
15
struct SMP {
16
unsigned ntsc_frequency;
17
unsigned pal_frequency;
18
} smp;
19
20
struct PPU1 {
21
unsigned version;
22
} ppu1;
23
24
struct PPU2 {
25
unsigned version;
26
} ppu2;
27
28
struct SuperFX {
29
unsigned speed;
30
} superfx;
31
32
Configuration();
33
};
34
35
extern Configuration config;
36
37