mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
14 lines
245 B
C++
14 lines
245 B
C++
struct DIP {
|
|
//dip.cpp
|
|
auto power() -> void;
|
|
|
|
auto read(uint addr, uint8 data) -> uint8;
|
|
auto write(uint addr, uint8 data) -> void;
|
|
|
|
//serialization.cpp
|
|
auto serialize(serializer&) -> void;
|
|
|
|
uint8 value = 0x00;
|
|
};
|
|
|
|
extern DIP dip;
|