mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
10 lines
191 B
C++
10 lines
191 B
C++
struct DSP4 {
|
|
auto power() -> void;
|
|
|
|
auto read(uint addr, uint8 data) -> uint8;
|
|
auto write(uint addr, uint8 data) -> void;
|
|
|
|
auto serialize(serializer&) -> void;
|
|
};
|
|
|
|
extern DSP4 dsp4;
|