mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
17 lines
242 B
C++
Executable file
17 lines
242 B
C++
Executable file
class NSS {
|
|
public:
|
|
void init();
|
|
void load();
|
|
void unload();
|
|
void power();
|
|
void reset();
|
|
|
|
void set_dip(uint16 dip);
|
|
uint8 read(unsigned addr);
|
|
void write(unsigned addr, uint8 data);
|
|
|
|
private:
|
|
uint16 dip;
|
|
};
|
|
|
|
extern NSS nss;
|