Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/libsnes/bsnes/snes/chip/superfx/bus/bus.hpp
2 views
1
struct ROM : Memory {
2
unsigned size() const;
3
uint8 read(unsigned);
4
void write(unsigned, uint8);
5
} rom;
6
7
struct RAM : Memory {
8
unsigned size() const;
9
uint8 read(unsigned);
10
void write(unsigned, uint8);
11
} ram;
12
13