mirror of https://github.com/bsnes-emu/bsnes.git
16 lines
304 B
C++
16 lines
304 B
C++
struct NSS {
|
|
auto init() -> void;
|
|
auto load() -> void;
|
|
auto unload() -> void;
|
|
auto power() -> void;
|
|
auto reset() -> void;
|
|
|
|
auto set_dip(uint16 dip) -> void;
|
|
auto read(uint24 addr, uint8 data) -> uint8;
|
|
auto write(uint24 addr, uint8 data) -> void;
|
|
|
|
uint8 dip = 0x00;
|
|
};
|
|
|
|
extern NSS nss;
|