mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
14 lines
318 B
C++
Executable file
14 lines
318 B
C++
Executable file
StaticRAM iram;
|
|
|
|
struct CPUIRAM : Memory {
|
|
unsigned size() const;
|
|
alwaysinline uint8 read(unsigned);
|
|
alwaysinline void write(unsigned, uint8);
|
|
} cpuiram;
|
|
|
|
struct CPUBWRAM : Memory {
|
|
unsigned size() const;
|
|
alwaysinline uint8 read(unsigned);
|
|
alwaysinline void write(unsigned, uint8);
|
|
bool dma;
|
|
} cpubwram;
|