Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/libsnes/bsnes/snes/chip/icd2/icd2.hpp
2 views
1
class ICD2 : public GameBoy::Interface, public Coprocessor {
2
public:
3
unsigned revision;
4
5
static void Enter();
6
void enter();
7
8
void init();
9
void load();
10
void unload();
11
void power();
12
void reset();
13
14
uint8 read(unsigned addr);
15
void write(unsigned addr, uint8 data);
16
17
void serialize(serializer&);
18
19
ICD2();
20
21
private:
22
#include "interface/interface.hpp"
23
#include "mmio/mmio.hpp"
24
};
25
26
extern ICD2 icd2;
27
28