mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
6 lines
99 B
C++
Executable file
6 lines
99 B
C++
Executable file
struct Bus {
|
|
uint8 read(uint16 addr);
|
|
void write(uint16 addr, uint8 data);
|
|
};
|
|
|
|
extern Bus bus;
|