mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
11 lines
219 B
C++
Executable file
11 lines
219 B
C++
Executable file
struct ROM : Memory {
|
|
unsigned size() const;
|
|
uint8 read(unsigned);
|
|
void write(unsigned, uint8);
|
|
} rom;
|
|
|
|
struct RAM : Memory {
|
|
unsigned size() const;
|
|
uint8 read(unsigned);
|
|
void write(unsigned, uint8);
|
|
} ram;
|